35 lines
890 B
JSON
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"
|
|
]
|
|
}
|
|
}
|
|
}
|