完善typescript的调试。

This commit is contained in:
2023-03-07 17:54:52 +08:00
parent e99d092862
commit 12dd277a2a
9 changed files with 15 additions and 9 deletions

View File

@@ -13,7 +13,7 @@
"useDefineForClassFields": true,
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "node",
"moduleResolution": "nodenext",
"strict": true,
"jsx": "preserve",
"sourceMap": true,
@@ -26,8 +26,8 @@
],
},
"lib": [
"esnext",
"dom"
"ESNext",
"DOM"
],
"types": [
"vite/client"
@@ -41,4 +41,7 @@
"src/router/index.js",
"src/router/index.js",
],
"exclude": [
"./node_modules",
]
}