This commit is contained in:
gyq
2025-12-01 10:49:30 +08:00
commit a15324ae9e
51 changed files with 7696 additions and 0 deletions

29
jsconfig.json Normal file
View File

@@ -0,0 +1,29 @@
{
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"baseUrl": ".",
"paths": {
"@/*": [
"src/*"
],
"@renderer/*": [
"src/renderer/src/*"
]
},
"moduleResolution": "Node",
"lib": [
"ESNext",
"DOM"
]
},
"include": [
"src/**/*.js",
"src/**/*.vue",
"src/auto-imports.d.ts", // 关键:包含自动导入的声明文件
"src/components.d.ts"
],
"exclude": [
"node_modules"
]
}