Files
bunq/tsconfig.json

16 lines
331 B
JSON
Raw Normal View History

2025-07-18 10:31:12 +00:00
{
"compilerOptions": {
"experimentalDecorators": true,
2025-07-18 10:43:39 +00:00
"emitDecoratorMetadata": true,
2025-07-18 10:31:12 +00:00
"useDefineForClassFields": false,
2025-07-18 10:43:39 +00:00
"target": "ES2022",
2025-07-18 10:31:12 +00:00
"module": "NodeNext",
"moduleResolution": "NodeNext",
"esModuleInterop": true,
2025-07-18 10:43:39 +00:00
"verbatimModuleSyntax": true
2025-07-18 10:31:12 +00:00
},
"exclude": [
2025-07-18 10:43:39 +00:00
"dist_*/**/*.d.ts"
2025-07-18 10:31:12 +00:00
]
2025-07-18 10:43:39 +00:00
}