Implement local SQLite backend and reactive UI

This commit is contained in:
2026-05-14 21:28:32 -04:00
parent 4aa3f7b362
commit f95b0ae912
35 changed files with 5444 additions and 2009 deletions

View File

@@ -5,6 +5,9 @@ const shared = {
outDir: "dist-electron",
sourcemap: true,
outExtensions: () => ({ js: ".cjs" }),
deps: {
neverBundle: ["electron"],
},
};
export default defineConfig([
@@ -12,7 +15,10 @@ export default defineConfig([
...shared,
entry: ["src/main.ts"],
clean: true,
noExternal: (id) => id.startsWith("@mosaiciq/"),
deps: {
...shared.deps,
alwaysBundle: (id: string) => id.startsWith("@mosaiciq/"),
},
},
{
...shared,