2023-11-06 11:00:04 +01:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"strict": true,
|
|
|
|
|
"declaration": false,
|
|
|
|
|
"noEmitOnError": true,
|
|
|
|
|
"noEmit": true,
|
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
|
"moduleResolution": "node",
|
|
|
|
|
"module": "ESNext",
|
|
|
|
|
"target": "ESNext",
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"isolatedModules": true,
|
|
|
|
|
"lib": ["esnext", "dom"],
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
"allowSyntheticDefaultImports": true,
|
2025-06-18 15:47:24 +02:00
|
|
|
"allowImportingTsExtensions": true,
|
2023-11-06 11:00:04 +01:00
|
|
|
"downlevelIteration": true,
|
|
|
|
|
"sourceMap": true,
|
2024-02-01 22:38:21 +09:00
|
|
|
},
|
2023-11-06 11:00:04 +01:00
|
|
|
}
|