mirror of
https://github.com/Microsoft/vscode
synced 2024-11-05 18:29:38 +00:00
78 lines
1.8 KiB
JavaScript
78 lines
1.8 KiB
JavaScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
//@ts-check
|
|
|
|
'use strict';
|
|
const CopyPlugin = require('copy-webpack-plugin');
|
|
const Terser = require('terser');
|
|
|
|
const defaultConfig = require('../shared.webpack.config');
|
|
const withBrowserDefaults = defaultConfig.browser;
|
|
const browserPlugins = defaultConfig.browserPlugins;
|
|
|
|
const languages = [
|
|
'zh-tw',
|
|
'cs',
|
|
'de',
|
|
'es',
|
|
'fr',
|
|
'it',
|
|
'ja',
|
|
'ko',
|
|
'pl',
|
|
'pt-br',
|
|
'ru',
|
|
'tr',
|
|
'zh-cn',
|
|
];
|
|
|
|
module.exports = withBrowserDefaults({
|
|
context: __dirname,
|
|
entry: {
|
|
extension: './src/extension.browser.ts',
|
|
},
|
|
plugins: [
|
|
...browserPlugins, // add plugins, don't replace inherited
|
|
|
|
// @ts-ignore
|
|
new CopyPlugin({
|
|
patterns: [
|
|
{
|
|
from: '../node_modules/typescript/lib/*.d.ts',
|
|
to: 'typescript/',
|
|
flatten: true
|
|
},
|
|
{
|
|
from: '../node_modules/typescript/lib/typesMap.json',
|
|
to: 'typescript/'
|
|
},
|
|
...languages.map(lang => ({
|
|
from: `../node_modules/typescript/lib/${lang}/**/*`,
|
|
to: 'typescript/',
|
|
transformPath: (targetPath) => {
|
|
return targetPath.replace(/\.\.[\/\\]node_modules[\/\\]typescript[\/\\]lib/, '');
|
|
}
|
|
}))
|
|
],
|
|
}),
|
|
// @ts-ignore
|
|
new CopyPlugin({
|
|
patterns: [
|
|
{
|
|
from: '../node_modules/typescript/lib/tsserver.js',
|
|
to: 'typescript/tsserver.web.js',
|
|
transform: (content) => {
|
|
return Terser.minify(content.toString()).then(output => output.code);
|
|
|
|
},
|
|
transformPath: (targetPath) => {
|
|
return targetPath.replace('tsserver.js', 'tsserver.web.js');
|
|
}
|
|
}
|
|
],
|
|
}),
|
|
],
|
|
});
|