-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.svelte.json
24 lines (24 loc) · 1.07 KB
/
tsconfig.svelte.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"extends": "@tsconfig/svelte/tsconfig.json",
"compilerOptions": {
"target": "esnext",
"outDir": "build",
"module": "esnext",
"preserveValueImports": true,
"noUnusedLocals": true /* Report errors on unused locals. */,
"noUnusedParameters": true /* Report errors on unused parameters. */,
"noImplicitReturns": true /* Report error when not all code paths in function return a value. */,
"noFallthroughCasesInSwitch": true /* Report errors for fallthrough cases in switch statement. */,
"traceResolution": false /* Report module resolution log messages. */,
"listEmittedFiles": false /* Print names of generated files part of the compilation. */,
"listFiles": false /* Print names of files part of the compilation. */,
"pretty": true /* Stylize errors and messages using color and context. */,
"allowJs": true,
"lib": ["es2019"],
"types": ["node", "svelte"],
"typeRoots": ["node_modules/@types", "src/types"],
"preserveWatchOutput": true
},
"include": ["./src/**/*.svelte"],
"exclude": ["node_modules/**", "build"]
}