massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-json / esbuild.js
index d0caa012526a775a921ebe7c4d91c8a856eb9a08..2a0e778868b73ba69393a3cff3faf2982c1ea615 100644 (file)
@@ -31,7 +31,7 @@ let entryPlugin = {
 
 async function start() {
   await require('esbuild').build({
-    entryPoints: ['index.ts', 'server.ts'],
+    entryPoints: ['src/index.ts'],
     define: {'process.env.NODE_ENV': JSON.stringify("production")},
     bundle: true,
     platform: 'node',
@@ -41,7 +41,7 @@ async function start() {
     sourcemap: true,
     external: ['coc.nvim'],
     outdir: path.resolve(__dirname, 'lib'),
-    plugins: [entryPlugin]
+    // plugins: [entryPlugin]
   })
 }