Skip to content

Commit

Permalink
Fix build output dir
Browse files Browse the repository at this point in the history
mjbvz committed Sep 8, 2021
1 parent b454d14 commit d9a4870
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/webpack.config.js
Original file line number Diff line number Diff line change
@@ -15,7 +15,7 @@ const config = {

entry: './src/extension.ts', // the entry point of this extension, 📖 -> https://webpack.js.org/configuration/entry-context/
output: { // the bundle is stored in the 'dist' folder (check package.json), 📖 -> https://webpack.js.org/configuration/output/
path: path.resolve(__dirname, 'dist'),
path: path.resolve(__dirname, '..', 'dist'),
filename: 'extension.js',
libraryTarget: "commonjs2",
devtoolModuleFilenameTemplate: "../[resource-path]",

0 comments on commit d9a4870

Please sign in to comment.