You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: webpack.config.js
+1-7Lines changed: 1 addition & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,6 @@ const path = require('path');
13
13
/** @type WebpackConfig */
14
14
constconfig={
15
15
target: 'node',// vscode extensions run in a Node.js-context 📖 -> https://webpack.js.org/configuration/node/
16
-
17
16
entry: './src/extension.ts',// the entry point of this extension, 📖 -> https://webpack.js.org/configuration/entry-context/
18
17
output: {// the bundle is stored in the 'dist' folder (check package.json), 📖 -> https://webpack.js.org/configuration/output/
19
18
path: path.resolve(__dirname,'dist'),
@@ -27,7 +26,6 @@ const config = {
27
26
devtool: 'source-map',
28
27
externals: {
29
28
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/
30
-
emulators: "commonjs emulators",
31
29
},
32
30
resolve: {// support reading TypeScript and JavaScript files, 📖 -> https://github.com/TypeStrong/ts-loader
0 commit comments