-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathtsconfig.app.json
36 lines (36 loc) · 968 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
36
{
"extends": "@vue/tsconfig/tsconfig.dom.json",
"compilerOptions": {
"composite": true,
"lib": ["ES2020", "ES2021.Intl", "DOM", "DOM.Iterable"],
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
},
"types": [
"node",
"vite/client",
"vite-plugin-comlink/client",
"unplugin-vue-macros/macros-global",
"vitest/globals",
"@vitest/browser/providers/playwright"
],
"allowImportingTsExtensions": true,
"noEmit": true,
"isolatedModules": true
},
"include": ["env.d.ts", "src/**/*", "src/**/*.vue"],
"exclude": ["src/**/__tests__/*"],
"vueCompilerOptions": {
"target": 3,
"plugins": [
"@vue-macros/volar/define-models",
"@vue-macros/volar/define-prop",
"@vue-macros/volar/define-props",
"@vue-macros/volar/define-props-refs",
"@vue-macros/volar/short-vmodel",
"@vue-macros/volar/short-bind",
"@vue-macros/volar/boolean-prop"
]
}
}