-
-
Notifications
You must be signed in to change notification settings - Fork 82
/
tsconfig.json
66 lines (66 loc) · 1.5 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
{
"include": [
"./src/**/*.ts",
"./src/*.d.ts",
"./client.d.ts",
"./tests/**/*.ts,"
],
"exclude": [
"./src/**/*.test-d.ts",
// "./src/**/*.spec.ts",
// "./src/data-loaders/defineQueryLoader.ts",
// "./src/data-loaders/defineVueFireLoader.ts",
"node_modules",
"dist"
],
"compilerOptions": {
"baseUrl": ".",
"rootDir": ".",
"jsx": "preserve",
"target": "ESNext",
"module": "ESNext",
"lib": [
"ESNext",
"DOM"
],
"moduleResolution": "Bundler",
"skipDefaultLibCheck": true,
"skipLibCheck": true,
"esModuleInterop": true,
"isolatedModules": true,
"strict": true,
"allowUnusedLabels": false,
"allowUnreachableCode": false,
"exactOptionalPropertyTypes": false,
"noFallthroughCasesInSwitch": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noPropertyAccessFromIndexSignature": false,
"noUncheckedIndexedAccess": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"strictNullChecks": true,
"resolveJsonModule": true,
"paths": {
"unplugin-vue-router": [
"./src/index.ts"
],
"unplugin-vue-router/types": [
"./src/types.ts"
],
"unplugin-vue-router/runtime": [
"./src/runtime.ts"
],
"unplugin-vue-router/data-loaders": [
"./src/data-loaders/entries/index.ts"
]
},
"types": [
"node",
"vite/client"
]
},
"vueCompilerOptions": {
"plugins": []
},
}