-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathjsconfig.json
51 lines (51 loc) · 1.23 KB
/
jsconfig.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
{
"extends": "@tsconfig/svelte/tsconfig.json",
"include": [
"ambient.d.ts",
"./vite.config.ts",
"./src/types/**/$types.d.ts",
"./src/**/*.js",
"./src/**/*.ts",
"./src/**/*.svelte",
"./tests/**/*.js",
"./tests/**/*.ts",
"./tests/**/*.svelte"
],
"exclude": [
"./node_modules/**",
],
"compilerOptions": {
"checkJs": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"sourceMap": true,
"strict": true,
"types": [ "vite/client" ],
"paths": {
"@icons": [
"./web/icons"
],
"@icons/*": [
"./web/icons/*"
]
},
"rootDirs": [
".",
"./src/types"
],
"importsNotUsedAsValues": "error",
"isolatedModules": true,
"preserveValueImports": true,
"lib": [
"esnext",
"DOM",
"DOM.Iterable"
],
"moduleResolution": "node",
"module": "esnext",
"target": "esnext",
"ignoreDeprecations": "5.0"
}
}