chore: update ts definition generator

This commit is contained in:
steven
2023-09-03 14:35:50 +08:00
parent 7cde25bdb5
commit 2fcd496fd2
29 changed files with 12178 additions and 55 deletions

View File

@@ -1,4 +1,5 @@
import react from "@vitejs/plugin-react-swc";
import { resolve } from "path";
import { defineConfig } from "vite";
// https://vitejs.dev/config/
@@ -18,4 +19,9 @@ export default defineConfig({
},
},
},
resolve: {
alias: {
"@/": `${resolve(__dirname, "src")}/`,
},
},
});