-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
52 lines (52 loc) · 854 Bytes
/
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
{
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "Node",
"strict": false,
"importHelpers": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"declaration": true,
"declarationDir": "./dist",
"baseUrl": ".",
"outDir": "./dist",
"rootDir": "src",
"lib": [
"ESNext",
"DOM"
],
"paths": {
"@/*": [
"./src/*"
]
},
"typeRoots": [
"./ts"
],
"skipLibCheck": true,
"useDefineForClassFields": true,
"jsx": "preserve",
"resolveJsonModule": true,
"noEmit": true
},
"types": [
"node"
],
"exclude": [
"src/App.vue",
"src/main.ts",
"src/components/**/*.ts",
"src/components/**/*.vue",
"node_modules"
],
"include": [
"src/**/*.ts",
"src/**/*.vue",
],
"references": [
{
"path": "./tsconfig.node.json"
}
]
}