2023-12-26 20:24:42 +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-01-27 19:58:35 +01:00
|
|
|
"importsNotUsedAsValues": "error",
|
|
|
|
"preserveValueImports": true,
|
2023-12-26 20:24:42 +01:00
|
|
|
|
|
|
|
"allowJs": true,
|
|
|
|
"checkJs": true
|
|
|
|
}
|
|
|
|
}
|