-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
45 lines (45 loc) · 1.27 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
{
"extends": "@vue/tsconfig/tsconfig.dom.json",
"compilerOptions": {
"paths": {
// "~": ["../src"],
// "~/*": ["../src/*"],
"@": ["./src"]
// "@/*": ["../src/*"],
// "~~": ["../src"],
// "~~/*": ["../src/*"],
// "@@": ["../src"],
// "@@/*": ["../src/*"],
// "assets": ["./src/assets"],
// "assets/*": ["./src/assets/*"],
// "public": ["./src/public"],
// "public/*": ["./src/public/*"],
// "#components": ["./src/components"],
// "#components/*": ["./src/components/*"]
},
"esModuleInterop": true,
"skipLibCheck": true,
"target": "ESNext",
"allowJs": true,
"resolveJsonModule": true,
"moduleDetection": "force",
"isolatedModules": true,
"verbatimModuleSyntax": true,
"strict": true,
"noUncheckedIndexedAccess": false,
"forceConsistentCasingInFileNames": true,
"noImplicitOverride": true,
"module": "preserve",
"noEmit": true,
"lib": ["ESNext", "dom", "dom.iterable"],
"jsx": "preserve",
"jsxImportSource": "vue",
"types": [],
"moduleResolution": "Bundler",
"useDefineForClassFields": true,
"noImplicitThis": true,
"allowSyntheticDefaultImports": true
},
"exclude": ["./dist"],
"include": ["src", ".vitepresss"]
}