python lsp

This commit is contained in:
Christoph Brandau
2025-07-16 17:14:09 +02:00
parent 9febcebddb
commit 99718eb856
194 changed files with 52506 additions and 116 deletions
+3 -3
View File
@@ -5,15 +5,15 @@ const watch = process.argv.includes("--watch")
async function main() {
const ctx = await esbuild.context({
entryPoints: ["client/src/extension.ts", "server/src/server.ts"],
entryPoints: ["client/src/extension.ts"],
bundle: true,
format: "cjs",
minify: production,
sourcemap: !production,
sourcesContent: false,
platform: "node",
outdir: "out",
// outfile: "client/out/extension.js",
// outdir: "out",
outfile: "./dist/extension.js",
external: ["vscode"],
logLevel: "silent",
plugins: [