added pnpm, vite, and typescript support

This commit is contained in:
2025-03-27 21:35:17 -05:00
parent 30683d268d
commit 52ac0566fd
12 changed files with 1071 additions and 12 deletions
+12
View File
@@ -0,0 +1,12 @@
import { defineConfig } from "vite";
import path from "path";
export default defineConfig({
resolve: {
alias: {
"@go": path.resolve(__dirname, "./wailsjs/go"),
"@components": path.resolve(__dirname, "./src/components"),
"@assets": path.resolve(__dirname, "./src/assets"),
},
},
});