Initial open-source release

This commit is contained in:
Will Chen
2025-04-11 09:37:05 -07:00
commit 43f67e0739
208 changed files with 45476 additions and 0 deletions

21
vite.main.config.mts Normal file
View File

@@ -0,0 +1,21 @@
import { defineConfig } from "vite";
// https://vitejs.dev/config
export default defineConfig({
build: {
rollupOptions: {
external: ["better-sqlite3"],
output: {
sourcemap: true,
},
},
},
plugins: [
{
name: "restart",
closeBundle() {
process.stdin.emit("data", "rs");
},
},
],
});