change for release

This commit is contained in:
Christoph Brandau
2025-01-07 18:16:05 +01:00
parent 09d1685aa9
commit 8c1b614d20
9 changed files with 3707 additions and 146 deletions
+17
View File
@@ -0,0 +1,17 @@
import { defineConfig } from "vite";
export default defineConfig({
build: {
lib: {
entry: "./client/src/extension.ts",
formats: ["cjs", "es"],
fileName: "extension",
},
rollupOptions: {
external: ["vscode"],
},
sourcemap: true,
outDir: "client/out/src",
},
plugins: [],
});