diff --git a/webpack.config.js b/webpack.config.js index 73d49a0..7fafcd1 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -9,7 +9,7 @@ const webpack = require('webpack'); const config = { target: 'webworker', // vscode extensions run in webworker context for VS Code web 📖 -> https://webpack.js.org/configuration/target/#target context: path.resolve(__dirname, 'src'), - entry: './src/extension.ts', // the entry point of this extension, 📖 -> https://webpack.js.org/configuration/entry-context/ + entry: './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'),