-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.app.json
35 lines (35 loc) · 936 Bytes
/
tsconfig.app.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
{
"extends": "@vue/tsconfig/tsconfig.dom.json",
"include": ["env.d.ts", "src/**/*"],
"exclude": ["src/**/__tests__/*"],
"compilerOptions": {
"composite": true,
"baseUrl": ".",
"paths": {
"@components/*": ["./src/components/*"],
"@composables/*": ["./src/composables/*"],
"@plugins/*": ["./src/plugins/*"],
"@views/*": ["./src/views/*"],
"@/*": ["./src/*"]
},
"types": [
"node",
"unplugin-vue-define-options/macros-global",
"unplugin-vue-macros/macros-global"
]
},
"vueCompilerOptions": {
"plugins": [
"@vue-macros/volar/define-options",
"@vue-macros/volar/define-models",
"@vue-macros/volar/define-props",
"@vue-macros/volar/define-props-refs",
"@vue-macros/volar/short-vmodel",
"@vue-macros/volar/define-slots",
"@vue-macros/volar/export-props"
]
},
"typeRoots": [
"node_modules/@types"
]
}