25 lines
690 B
JSON
25 lines
690 B
JSON
{
|
|
"extends": "@tsconfig/svelte/tsconfig.json",
|
|
|
|
"include": ["src/**/*", "types/**/*", "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,
|
|
"importsNotUsedAsValues": "error",
|
|
|
|
"allowJs": true,
|
|
"checkJs": true,
|
|
"preserveValueImports": true
|
|
}
|
|
}
|