Files
npmextra/tsconfig.json

16 lines
360 B
JSON
Raw Normal View History

2023-08-03 19:22:34 +02:00
{
"compilerOptions": {
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
2023-08-03 19:22:34 +02:00
"useDefineForClassFields": false,
"target": "ES2022",
2024-01-25 13:57:55 +01:00
"module": "NodeNext",
"moduleResolution": "NodeNext",
2023-08-03 19:22:34 +02:00
"esModuleInterop": true,
"verbatimModuleSyntax": true,
"baseUrl": ".",
"paths": {}
2024-01-25 13:57:55 +01:00
},
"exclude": ["dist_*/**/*.d.ts"]
2023-08-03 19:22:34 +02:00
}