Files
kontextwerk/tsconfig.json
2025-10-02 09:03:39 +00:00

35 lines
890 B
JSON

{
"extends": "@tsconfig/svelte/tsconfig.json",
"include": [
"frontend/src/**/*",
"types/**/*",
"./../../cms/tibi-types"
],
"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,
"verbatimModuleSyntax": true,
"allowJs": true,
"checkJs": false,
"strictNullChecks": false,
"noUnusedLocals": true,
"paths": {
"cryptcha": [
"./types/cryptcha"
]
}
}
}