-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathtsconfig.json
31 lines (31 loc) · 928 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
{
"extends": "@vue/tsconfig/tsconfig.dom.json",
"include": ["env.d.ts", "src/**/*", "src/**/*.vue"],
"exclude": ["src/**/__tests__/*"],
"compilerOptions": {
"strict": false,
"module": "ESNext",
"target": "ES2020",
"skipLibCheck": true,
"composite": true,
"isolatedModules": true,
"baseUrl": ".",
"types": ["node"],
"paths": {
"@/*": ["./src/*"],
"Components": ["./src/components"],
"Img": ["./src/assets/img"],
"Css": ["./src/assets/css"],
"Fonts": ["./src/assets/fonts"],
"Content": ["./src/content"],
"Utils/*": ["./src/utils/*"],
"Store/*": ["./src/store/*"],
"Components/*": ["./src/components/*"],
"Img/*": ["./src/assets/img/*"],
"Css/*": ["./src/assets/css/*"],
"Fonts/*": ["./src/assets/fonts/*"],
"Content/*": ["./src/content/*"]
},
},
"references": [{ "path": "./tsconfig.node.json" }]
}