summaryrefslogtreecommitdiff
path: root/client
diff options
context:
space:
mode:
authorIan P Bradley <ian.bradley@studiocrabapple.com>2023-03-26 18:06:48 -0700
committerIan P Bradley <ian.bradley@studiocrabapple.com>2024-01-06 02:47:52 -0800
commit8a563a04c2bd614a6190a44afa1b19e45bfd4f7b (patch)
treeadb700cb2532b8ea449d886508bbb758604b14c3 /client
parenta56989a95481e00c6fcb6e85dad15225ceac22b2 (diff)
downloadPerlNavigator-8a563a04c2bd614a6190a44afa1b19e45bfd4f7b.zip
Compile main extension with webpack and add .vscodeignore
This cuts the .vsix extension filesize down by over half and markedly increases performance on my setup
Diffstat (limited to 'client')
-rw-r--r--client/src/extension.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/src/extension.ts b/client/src/extension.ts
index 8a41b8a..7c01078 100644
--- a/client/src/extension.ts
+++ b/client/src/extension.ts
@@ -18,7 +18,7 @@ let client: LanguageClient;
export function activate(context: ExtensionContext) {
// The server is implemented in node
const serverModule = context.asAbsolutePath(
- path.join('server', 'out', 'server.js')
+ path.join('server', 'dist', 'serverMain.js')
);
// The debug options for the server
// --inspect=6009: runs the server in Node's Inspector mode so VS Code can attach to the server for debugging