-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathtsconfig.json
66 lines (66 loc) · 1.58 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"compilerOptions": {
"lib": ["ESNext", "DOM", "DOM.Iterable"],
"target": "ESNext",
"module": "ESNext",
"moduleDetection": "force",
"jsx": "react-jsx",
"allowJs": true,
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
"isolatedModules": true,
"noEmit": true,
"strict": true,
"skipLibCheck": true,
"noFallthroughCasesInSwitch": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"noPropertyAccessFromIndexSignature": false,
"noUncheckedIndexedAccess": true,
"types": ["@types/bun"],
"rootDirs": ["./", "./.svelte-kit/types"],
"paths": {
"~shared": ["./shared"],
"~shared/*": ["./shared/*"],
"$lib": ["./app/lib"],
"$lib/*": ["./app/lib/*"]
}
},
"include": [
"./app/**/*.js",
"./app/**/*.ts",
"./app/**/*.svelte",
".svelte-kit/ambient.d.ts",
"./cli/**/*.ts",
"./shared/**/*.ts",
"./.svelte-kit/ambient.d.ts",
"./.svelte-kit/non-ambient.d.ts",
"./.svelte-kit/types/**/$types.d.ts",
"./vite.config.js",
"./vite.config.ts",
"./app/routes/**/*.js",
"./app/routes/**/*.ts",
"./app/routes/**/*.svelte",
"./app/lib/**/*.js",
"./app/lib/**/*.ts",
"./app/lib/**/*.svelte",
"./src/**/*.js",
"./src/**/*.ts",
"./src/**/*.svelte",
"./tests/**/*.js",
"./tests/**/*.ts",
"./tests/**/*.svelte",
"./scripts/*.ts",
"./serve.ts"
],
"exclude": [
"./node_modules/**",
"./src/service-worker.js",
"./src/service-worker/**/*.js",
"./src/service-worker.ts",
"./src/service-worker/**/*.ts",
"./src/service-worker.d.ts",
"./src/service-worker/**/*.d.ts"
]
}