-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtsconfig.json
59 lines (59 loc) · 1.32 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
{
"compilerOptions": {
"incremental": false,
"target": "ESNext",
"jsx": "preserve",
"lib": ["DOM", "ESNext"],
"useDefineForClassFields": true,
"baseUrl": ".",
"module": "ESNext",
"moduleResolution": "node",
"paths": {
"~/*": ["src/*"],
"#/*": ["types/*"]
},
"resolveJsonModule": true,
"types": [
"vite/client",
"quasar",
"node",
"vite-plugin-vue-layouts/client",
"unplugin-vue-router/client"
],
"allowJs": true,
"strict": true,
"strictFunctionTypes": false,
"strictNullChecks": true,
"noFallthroughCasesInSwitch": true,
"noImplicitAny": false,
"noImplicitOverride": true,
"noImplicitThis": true,
"noUncheckedIndexedAccess": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"importHelpers": true,
"inlineSources": true,
"noEmit": true,
"preserveConstEnums": true,
"removeComments": true,
"sourceMap": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true
},
"include": [
"src/**/*.ts",
"src/**/*.tsx",
"src/**/*.vue",
"tests/**/*.ts",
"types/**/*.ts",
"vite.config.ts"
],
"exclude": [
"node_modules",
"dist",
"cypress",
"**/*.js"
]
}