From 200c17f3df5bca193b3b9badeefdb9bbf27ca827 Mon Sep 17 00:00:00 2001 From: Jason Poon <85374+jpoon@users.noreply.github.com> Date: Mon, 14 Oct 2019 00:19:51 -0700 Subject: [PATCH] fix: exclude neovim from webpack module. #4126 (#4169) --- webpack.config.js | 1 + 1 file changed, 1 insertion(+) diff --git a/webpack.config.js b/webpack.config.js index f4ccfad62ff..e8699fe276a 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -21,6 +21,7 @@ const config = { devtool: 'source-map', externals: { vscode: 'commonjs vscode', // the vscode-module is created on-the-fly and must be excluded. Add other modules that cannot be webpack'ed, 📖 -> https://webpack.js.org/configuration/externals/ + neovim: 'neovim', }, resolve: { // support reading TypeScript and JavaScript files, 📖 -> https://github.com/TypeStrong/ts-loader