27 lines
823 B
JSON
27 lines
823 B
JSON
{
|
|
"extends": "@tsconfig/svelte/tsconfig.json",
|
|
|
|
"include": ["src/**/*", "types/**/*"],
|
|
"compilerOptions": {
|
|
"module": "esnext",
|
|
"typeRoots": ["./node_modules/@types", "./types"],
|
|
|
|
"target": "esnext",
|
|
"moduleResolution": "node",
|
|
"jsx": "preserve",
|
|
"baseUrl": "./",
|
|
/* paths - If you configure Snowpack import aliases, add them here. */
|
|
"paths": {},
|
|
/* noEmit - Snowpack builds (emits) files, not tsc. */
|
|
"noEmit": true,
|
|
/* Additional Options */
|
|
// "strict": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"resolveJsonModule": true,
|
|
"useDefineForClassFields": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"importsNotUsedAsValues": "error"
|
|
}
|
|
}
|