fix: fix some bug

This commit is contained in:
xiaoxian521
2021-04-20 14:33:07 +08:00
parent 9737014c0c
commit 055296ab53
11 changed files with 500 additions and 404 deletions

View File

@@ -15,26 +15,14 @@
"baseUrl": ".",
"allowJs": true,
"resolveJsonModule": true, // 包含导入的模块。json的扩展
"lib": [
"dom",
"esnext"
],
"lib": ["dom", "esnext"],
"incremental": true,
"paths": {
"/@/*": [
"src/*"
],
"/#/*": [
"types/*"
]
"/@/*": ["src/*"],
"/#/*": ["types/*"]
},
"types": [
"node"
],
"typeRoots": [
"./node_modules/@types/",
"./types"
],
"types": ["node"],
"typeRoots": ["./node_modules/@types/", "./types"]
},
"include": [
"src/**/*.ts",
@@ -44,11 +32,9 @@
"src/utils/path.js",
"types/**/*.d.ts",
"types/**/*.ts",
"types/shims-tsx.d.ts"
"types/global.d.ts",
"types/shims-tsx.d.ts",
"types/shims-vue.d.ts"
],
"exclude": [
"node_modules",
"dist",
"**/*.js"
],
}
"exclude": ["node_modules", "dist", "**/*.js"]
}