forked from opentiny/tiny-vue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.vue2.7.json
30 lines (30 loc) · 1.04 KB
/
tsconfig.vue2.7.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
{
"extends": "@vue/tsconfig/tsconfig.dom.json",
"compilerOptions": {
"allowJs": true,
"noImplicitAny": false,
"baseUrl": ".",
"paths": {
"@opentiny/vue-autonavi-map": ["packages/vue/src/chart/autonavi-map"],
"@opentiny/vue-baidu-map": ["packages/vue/src/chart/baidu-map"],
"@opentiny/vue-chart-*": ["packages/vue/src/chart/chart-*"],
"@opentiny/vue-*": ["packages/vue-*", "packages/vue/src/*"],
"@opentiny/vue-renderless/types*": ["packages/renderless/types*"],
"@opentiny/vue-renderless*": ["packages/renderless/src*"],
"virtual:common/adapter/vue": ["packages/vue-common/src/adapter/vue2.7/index.ts"],
"virtual:locale/vue": ["packages/vue-locale/src/vue2.7/index.ts"]
},
"types": ["node", "vite/client"]
},
"vueCompilerOptions": {
"target": 2.7
},
"include": [
"packages/**/*.ts",
"packages/**/*.tsx",
"packages/**/*.vue",
"examples/vue2.7/shims-app.d.ts",
"examples/vue2.7/shims-vue.d.ts"
],
"exclude": ["**/node_modules", "**/dist*", "**/*.md"]
}