generated from ryanatkn/fuz_template
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.json
37 lines (37 loc) · 902 Bytes
/
tsconfig.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
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"extends": "./.svelte-kit/tsconfig.json",
"compilerOptions": {
"types": ["@sveltejs/kit"],
"module": "NodeNext",
"moduleResolution": "NodeNext",
"strict": true,
"useUnknownInCatchVariables": false,
"exactOptionalPropertyTypes": false,
"forceConsistentCasingInFileNames": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noImplicitOverride": true,
"noFallthroughCasesInSwitch": true,
"resolveJsonModule": true,
"sourceMap": true,
"declaration": true,
"declarationMap": true,
"sourceRoot": "../src/lib/",
"importHelpers": true,
"skipLibCheck": true,
"allowJs": true,
"allowImportingTsExtensions": false,
"checkJs": true
},
"include": [
"*.js",
"*.ts",
".svelte-kit/ambient.d.ts",
".svelte-kit/non-ambient.d.ts",
".svelte-kit/types/**/$types.d.ts",
"src/**/*.js",
"src/**/*.ts",
"src/**/*.svelte"
]
}