mirror of
https://github.com/getAlby/hub.git
synced 2026-08-15 12:50:56 +02:00
* chore: add apps pagination (#1543) * feat: update subaccount transaction export to CSV with dropdown menu * feat: add subscriber-only transaction export with pagination and fix ui * chore: improve transactions csv export - get headers from all transactions - remove unnecessary pagination call - improved csv encoding - move dropdown to correct place in main wallet page - minor renaming - code cleanup * chore: split transactions list and transactions list menu * fix: stringify object fields * fix: plan code check --------- Co-authored-by: Aditya-PS-05 <adityapratapsjnhh7654@gmail.com> Co-authored-by: im-adithya <imadithyavardhan@gmail.com>
31 lines
718 B
JSON
31 lines
718 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"useDefineForClassFields": true,
|
|
"lib": ["ES2021", "DOM", "DOM.Iterable", "WebWorker"],
|
|
"module": "ESNext",
|
|
"skipLibCheck": true,
|
|
|
|
"baseUrl": ".",
|
|
|
|
/* Bundler mode */
|
|
"moduleResolution": "bundler",
|
|
"allowImportingTsExtensions": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"jsx": "react-jsx",
|
|
|
|
/* Linting */
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"paths": {
|
|
"react": ["./node_modules/@types/react"]
|
|
}
|
|
},
|
|
"include": ["src", "types"],
|
|
"references": [{ "path": "./tsconfig.node.json" }]
|
|
}
|