alby-hub/frontend/tsconfig.json
Roland fdbceec406
Feat: transactions csv export (#1672)
* 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>
2025-09-02 11:51:51 +07:00

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" }]
}