initial commit

This commit is contained in:
2026-02-09 11:40:12 +08:00
commit 1f98910722
63 changed files with 4972 additions and 0 deletions

13
config/esbuild.prod.ts Normal file
View File

@@ -0,0 +1,13 @@
import esbuild from 'esbuild';
import common from './esbuild.common';
(async () => {
const ctx = await esbuild.context(common);
if (process.argv.includes('--watch')) {
await ctx.watch();
} else {
await ctx.rebuild();
process.exit();
}
})();