Updating webpack to retain dirname value

This commit is contained in:
sfoslund 2020-02-27 13:59:03 -08:00
Родитель fb65b6d602
Коммит da48bf7396
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -16,6 +16,10 @@ const config = {
libraryTarget: 'commonjs2',
devtoolModuleFilenameTemplate: '../[resource-path]'
},
node: {
__dirname: false,
__filename: false,
},
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/