chore: 初始化文件结构

This commit is contained in:
2024-08-26 14:07:57 +08:00
parent d4f497f484
commit eb13a9efdb
24 changed files with 3035 additions and 0 deletions

20
jsconfig.app.json Normal file
View File

@@ -0,0 +1,20 @@
{
"extends": "@vue/tsconfig/tsconfig.dom.json",
"compilerOptions": {
"allowJs": true,
"baseUrl": ".",
"composite": true,
"paths": {
"@/*": ["./src/*"],
"@package-json": ["./package.json"],
}
},
"exclude": [],
"include": [
"package.json",
"src/**/*.js",
"src/**/*.vue",
"types/env.d.ts",
"types/web.d.ts"
]
}