UNPKG

705 BJSONView Raw
1{
2 "$schema": "https://json.schemastore.org/tsconfig",
3 "display": "Svelte",
4 "_version": "5.0.0",
5
6 "compilerOptions": {
7 "module": "esnext",
8 "moduleResolution": "bundler",
9 "target": "es2017",
10 /**
11 Svelte Preprocess cannot figure out whether you have a value or a type, so tell TypeScript
12 to enforce using `import type` instead of `import` for Types.
13 */
14 "verbatimModuleSyntax": true,
15 /**
16 To have warnings/errors of the Svelte compiler at the correct position,
17 enable source maps by default.
18 */
19 "sourceMap": true,
20
21 "strict": true,
22 "esModuleInterop": true,
23 "skipLibCheck": true,
24 "forceConsistentCasingInFileNames": true
25 }
26}