This commit is contained in:
神仙都没用 2024-08-08 17:44:07 +08:00
parent 3ada755dcc
commit 164c27e3bc
3 changed files with 3456 additions and 2889 deletions

File diff suppressed because it is too large Load Diff

View File

@ -1,3 +1,5 @@
/// <reference types="vite/client" />
interface ImportMetaEnv {
readonly VITE_NAME: string;
readonly VITE_TIMEOUT: number;

View File

@ -11,12 +11,7 @@
"experimentalDecorators": true,
"esModuleInterop": true,
"lib": ["esnext", "dom", "WebWorker"],
"types": [
"vite/client",
"element-plus/global",
"@cool-vue/vite-plugin/client",
"./build/cool/eps.d.ts"
],
"types": ["element-plus/global", "@cool-vue/vite-plugin/client", "./build/cool/eps.d.ts"],
"paths": {
"/@/*": ["./src/*"],
"/$/*": ["./src/modules/*"],
@ -24,6 +19,6 @@
"/~/*": ["./packages/*"]
}
},
"include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue", "env.d.ts"],
"include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"],
"exclude": ["node_modules", "dist"]
}