2023-08-03 19:22:34 +02:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"experimentalDecorators": true,
|
2025-08-15 12:12:26 +00:00
|
|
|
"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",
|
2026-04-30 10:12:32 +00:00
|
|
|
"noImplicitAny": true,
|
2023-08-03 19:22:34 +02:00
|
|
|
"esModuleInterop": true,
|
2025-08-15 12:12:26 +00:00
|
|
|
"verbatimModuleSyntax": true,
|
2026-04-30 10:12:32 +00:00
|
|
|
"types": ["node"]
|
2024-01-25 13:57:55 +01:00
|
|
|
},
|
2025-08-15 12:12:26 +00:00
|
|
|
"exclude": ["dist_*/**/*.d.ts"]
|
2023-08-03 19:22:34 +02:00
|
|
|
}
|