build(projects): 升级依赖,添加对json的eslint检测及格式化

This commit is contained in:
Soybean
2022-07-14 00:02:00 +08:00
parent d9cfeabb47
commit 711a4ae34f
8 changed files with 847 additions and 845 deletions

View File

@ -1,6 +1,6 @@
{
"compilerOptions": {
"baseUrl": ".",
"compilerOptions": {
"baseUrl": ".",
"module": "ESNext",
"target": "ESNext",
"lib": ["DOM", "ESNext"],
@ -12,16 +12,11 @@
"noUnusedLocals": true,
"strictNullChecks": true,
"forceConsistentCasingInFileNames": true,
"paths": {
"~/*": ["./*"],
"@/*": ["./src/*"]
},
"types": [
"vite/client",
"node",
"unplugin-icons/types/vue",
"naive-ui/volar"
]
},
"exclude": ["node_modules", "dist"]
"paths": {
"~/*": ["./*"],
"@/*": ["./src/*"]
},
"types": ["vite/client", "node", "unplugin-icons/types/vue", "naive-ui/volar"]
},
"exclude": ["node_modules", "dist"]
}