forked from cms/tibi-svelte-starter
21 lines
596 B
JSON
21 lines
596 B
JSON
{
|
|
"extends": "@tsconfig/svelte/tsconfig.json",
|
|
|
|
"include": ["src/**/*", "types/**/*"],
|
|
"compilerOptions": {
|
|
"module": "esnext",
|
|
"typeRoots": ["./node_modules/@types", "./types", "wmbasic-api-types"],
|
|
|
|
"target": "esnext",
|
|
"moduleResolution": "node",
|
|
"jsx": "preserve",
|
|
"noEmit": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"resolveJsonModule": true,
|
|
"useDefineForClassFields": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"importsNotUsedAsValues": "error"
|
|
}
|
|
}
|