This commit is contained in:
xiangheng
2023-11-24 16:46:30 +08:00
commit 8eb583397d
611 changed files with 28854 additions and 0 deletions

19
admin/tsconfig.json Normal file
View File

@@ -0,0 +1,19 @@
{
"include": [
"global.d.ts",
"src/**/*",
"src/**/*.vue",
"components.d.ts",
"auto-imports.d.ts",
"typings/**/*.d.ts"
],
"compilerOptions": {
"module": "esnext",
"moduleResolution": "node",
"isolatedModules": true,
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
}
}
}