Implement local SQLite backend and reactive UI
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user