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 { interface ImportMetaEnv {
readonly VITE_NAME: string; readonly VITE_NAME: string;
readonly VITE_TIMEOUT: number; readonly VITE_TIMEOUT: number;

View File

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