forked from megafetis/vue3-treeselect
-
Notifications
You must be signed in to change notification settings - Fork 7
/
tsconfig.json
39 lines (39 loc) · 897 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
{
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"strictPropertyInitialization": false,
"allowJs": true,
"jsx": "preserve",
"importHelpers": true,
"moduleResolution": "NodeNext",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"sourceMap": true,
"baseUrl": ".",
"paths": {
"@/*": [
"src/*"
]
},
"lib": [
"esnext",
"dom",
"dom.iterable",
"scripthost"
],
"types": [
"@vue/compiler-core/dist/compiler-core",
"@vue/compiler-dom/dist/compiler-dom",
"@vue/compiler-sfc/dist/compiler-sfc",
"@vue/compiler-ssr/dist/compiler-ssr",
"@vue/reactivity/dist/reactivity",
"@vue/runtime-core/dist/runtime-core",
"@vue/runtime-dom/dist/runtime-dom",
"@vue/shared/dist/shared"
]
},
"exclude": [
"node_modules"
],
}