vscode-azureresourcegroups/webpack.config.js

48 строки
1.9 KiB
JavaScript

/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
'use strict';
//@ts-check
// See https://github.com/Microsoft/vscode-azuretools/wiki/webpack for guidance
const process = require('process');
const dev = require("@microsoft/vscode-azext-dev");
let DEBUG_WEBPACK = !/^(false|0)?$/i.test(process.env.DEBUG_WEBPACK || '');
const config = dev.getDefaultWebpackConfig({
projectRoot: __dirname,
verbosity: DEBUG_WEBPACK ? 'debug' : 'normal',
entries: {
// required for cloud shell feature
cloudConsoleLauncher: './src/cloudConsole/cloudShellChildProcess/cloudConsoleLauncher.ts',
},
externals:
{
// Fix "Module not found" errors in ./node_modules/websocket/lib/{BufferUtil,Validation}.js
// These files are not in node_modules and so will fail normally at runtime and instead use fallbacks.
// Make them as external so webpack doesn't try to process them, and they'll simply fail at runtime as before.
'../build/Release/validation': 'commonjs ../build/Release/validation',
'../build/default/validation': 'commonjs ../build/default/validation',
'../build/Release/bufferutil': 'commonjs ../build/Release/bufferutil',
'../build/default/bufferutil': 'commonjs ../build/default/bufferutil',
// required for cloud shell feature
bufferutil: 'commonjs bufferutil',
'utf-8-validate': 'commonjs utf-8-validate',
'./platform/openbsd': 'commonjs copy-paste-openbsd',
},
target: 'node',
suppressCleanDistFolder: true,
});
if (DEBUG_WEBPACK) {
console.log('Config:', config);
}
module.exports = [config];