kylin-code/extensions/typescript-language-features/extension-browser.webpack.c...

83 lines
2.0 KiB
JavaScript
Raw Normal View History

2022-06-14 14:37:10 +08:00
/*---------------------------------------------------------------------------------------------
* 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/',
},
{
from: '../node_modules/typescript/lib/typesMap.json',
to: 'typescript/'
},
...languages.map(lang => ({
from: `../node_modules/typescript/lib/${lang}/**/*`,
to: (pathData) => {
const normalizedFileName = pathData.absoluteFilename.replace(/[\\/]/g, '/');
const match = normalizedFileName.match(/typescript\/lib\/(.*)/);
if (match) {
return `typescript/${match[1]}`;
}
console.log(`Did not find typescript/lib in ${normalizedFileName}`);
return 'typescript/';
2022-06-14 14:37:10 +08:00
}
}))
],
}),
// @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');
}
}
],
}),
],
});