2021-03-22 15:59:05 +01:00
|
|
|
{
|
|
|
|
"extends": "@tsconfig/svelte/tsconfig.json",
|
|
|
|
|
|
|
|
"include": ["src/**/*", "types/**/*"],
|
|
|
|
"compilerOptions": {
|
|
|
|
"module": "esnext",
|
2021-08-16 11:07:11 +02:00
|
|
|
"typeRoots": ["./node_modules/@types", "./types", "wmbasic-api-types"],
|
2021-03-22 15:59:05 +01:00
|
|
|
|
|
|
|
"target": "esnext",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"jsx": "preserve",
|
|
|
|
"noEmit": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"useDefineForClassFields": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"importsNotUsedAsValues": "error"
|
|
|
|
}
|
|
|
|
}
|