2024-11-08 16:47:53 +01:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
2025-06-18 15:47:24 +02:00
|
|
|
"strict": true,
|
2024-11-08 16:47:53 +01:00
|
|
|
"declaration": true,
|
|
|
|
|
"noEmitOnError": true,
|
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
2026-07-09 14:53:06 +02:00
|
|
|
"moduleResolution": "nodenext",
|
|
|
|
|
"module": "NodeNext",
|
2024-11-08 16:47:53 +01:00
|
|
|
"target": "ESNext",
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"lib": ["esnext"],
|
2026-08-18 13:09:22 +02:00
|
|
|
"types": ["node"],
|
2024-11-08 16:47:53 +01:00
|
|
|
"resolveJsonModule": true,
|
2025-06-18 15:47:24 +02:00
|
|
|
"allowImportingTsExtensions": true,
|
|
|
|
|
"noEmit": true,
|
2024-11-08 16:47:53 +01:00
|
|
|
"sourceMap": true,
|
|
|
|
|
},
|
|
|
|
|
}
|