-
Notifications
You must be signed in to change notification settings - Fork 11
/
tsconfig.json
56 lines (53 loc) · 1.87 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
{
"compilerOptions": {
///////////////////////////////////////////////////////////////////
// set by @vitejs/app (vue-ts)
///////////////////////////////////////////////////////////////////
"target": "esnext",
"module": "esnext",
"moduleResolution": "bundler",
"strict": true,
"jsx": "preserve",
"sourceMap": true,
"resolveJsonModule": true,
"esModuleInterop": true,
"lib": ["esnext", "dom", "dom.iterable"],
"types": ["node", "vite/client"],
///////////////////////////////////////////////////////////////////
// suggested by Volar
///////////////////////////////////////////////////////////////////
"allowJs": true,
"checkJs": true,
// instead of `@typescript-eslint/no-unused-vars`
"noUnusedLocals": false,
///////////////////////////////////////////////////////////////////
// additions
///////////////////////////////////////////////////////////////////
"isolatedModules": true,
"allowSyntheticDefaultImports": true,
"importHelpers": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"baseUrl": ".",
///////////////////////////////////////////////////////////////////
// also see `resolve.alias` in vite.config.js
///////////////////////////////////////////////////////////////////
"paths": {
"@/*": ["src/*"]
}
},
///////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////
"include": [
"src/**/*.js",
"src/**/*.ts",
"src/**/*.d.ts",
"src/**/*.tsx",
"src/**/*.vue"
],
///////////////////////////////////////////////////////////////////
// exclude folders for IntelliSense performance, exclude build files
///////////////////////////////////////////////////////////////////
"exclude": ["node_modules"]
}