Lines Matching +full:plugin +full:- +full:commonjs
7 // https://www.apache.org/licenses/LICENSE-2.0
18 const NodePolyfillPlugin = require('node-polyfill-webpack-plugin');
24 // Code web -> https://webpack.js.org/configuration/target/#target
27 // the entry point of this extension, ->
28 // https://webpack.js.org/configuration/entry-context/
32 // the bundle is stored in the 'dist' folder (check package.json), ->
37 devtoolModuleFilenameTemplate: '../[resource-path]',
39 devtool: 'source-map',
42 // the vscode-module is created on-the-fly and must
44 // webpack'ed, -> https://webpack.js.org/configuration/externals/
45 vscode: 'commonjs vscode',
48 // support reading TypeScript and JavaScript files, ->
49 // https://github.com/TypeStrong/ts-loader
67 use: [{ loader: 'ts-loader' }],