This commit is contained in:
Johannes Rieken
2018-08-24 15:04:36 +02:00
parent 099d99b76c
commit 6ba52f7b25
2 changed files with 7 additions and 2 deletions

View File

@@ -8,6 +8,7 @@
'use strict';
const withDefaults = require('../shared.webpack.config');
const CopyWebpackPlugin = require('copy-webpack-plugin');
module.exports = withDefaults({
context: __dirname,
@@ -19,5 +20,10 @@ module.exports = withDefaults({
},
entry: {
extension: './src/extension.ts',
}
},
plugins: [
new CopyWebpackPlugin([
{ from: './out/nls.*.json', to: '[name].json' }
])
]
});