skel-svelte-snowpack/tsconfig.json

27 lines
823 B
JSON
Raw Normal View History

2020-11-11 16:44:55 +01:00
{
"extends": "@tsconfig/svelte/tsconfig.json",
2020-11-23 10:57:59 +01:00
"include": ["src/**/*", "types/**/*"],
2020-11-11 16:44:55 +01:00
"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"
}
}