2023-02-21 13:36:06 +01:00
|
|
|
{
|
|
|
|
"extends": "@tsconfig/svelte/tsconfig.json",
|
|
|
|
|
|
|
|
"include": ["frontend/src/**/*", "types/**/*", "./../../cms/tibi-types", "api/**/*"],
|
|
|
|
"compilerOptions": {
|
|
|
|
"module": "esnext",
|
|
|
|
"typeRoots": ["./node_modules/@types", "./types"],
|
|
|
|
|
|
|
|
"target": "esnext",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"jsx": "preserve",
|
|
|
|
"noEmit": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"useDefineForClassFields": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
2024-04-09 16:47:44 +02:00
|
|
|
"verbatimModuleSyntax": true,
|
2023-02-21 13:36:06 +01:00
|
|
|
|
|
|
|
"allowJs": true,
|
2024-04-09 16:47:44 +02:00
|
|
|
"checkJs": true,
|
|
|
|
"strictNullChecks": false
|
2023-02-21 13:36:06 +01:00
|
|
|
}
|
|
|
|
}
|