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');
|
2024-04-30 20:57:13 +08:00
|
|
|
const path = require('path');
|
2022-06-14 14:37:10 +08:00
|
|
|
|
|
|
|
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',
|
|
|
|
];
|
2024-04-30 20:57:13 +08:00
|
|
|
module.exports = [withBrowserDefaults({
|
2022-06-14 14:37:10 +08:00
|
|
|
context: __dirname,
|
|
|
|
entry: {
|
|
|
|
extension: './src/extension.browser.ts',
|
|
|
|
},
|
|
|
|
plugins: [
|
2024-04-30 20:57:13 +08:00
|
|
|
...browserPlugins(__dirname), // add plugins, don't replace inherited
|
2022-06-14 14:37:10 +08:00
|
|
|
|
|
|
|
// @ts-ignore
|
|
|
|
new CopyPlugin({
|
|
|
|
patterns: [
|
|
|
|
{
|
|
|
|
from: '../node_modules/typescript/lib/*.d.ts',
|
2024-04-30 20:57:13 +08:00
|
|
|
to: 'typescript/[name][ext]',
|
2022-06-14 14:37:10 +08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
from: '../node_modules/typescript/lib/typesMap.json',
|
|
|
|
to: 'typescript/'
|
|
|
|
},
|
|
|
|
...languages.map(lang => ({
|
|
|
|
from: `../node_modules/typescript/lib/${lang}/**/*`,
|
2023-10-25 17:04:51 +08:00
|
|
|
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
|
|
|
}
|
|
|
|
}))
|
|
|
|
],
|
|
|
|
}),
|
|
|
|
],
|
2024-04-30 20:57:13 +08:00
|
|
|
}), withBrowserDefaults({
|
|
|
|
context: __dirname,
|
|
|
|
entry: {
|
|
|
|
'typescript/tsserver.web': './web/src/webServer.ts'
|
|
|
|
},
|
|
|
|
module: {
|
|
|
|
exprContextCritical: false,
|
|
|
|
},
|
|
|
|
ignoreWarnings: [/Critical dependency: the request of a dependency is an expression/],
|
|
|
|
output: {
|
|
|
|
// all output goes into `dist`.
|
|
|
|
// packaging depends on that and this must always be like it
|
|
|
|
filename: '[name].js',
|
|
|
|
path: path.join(__dirname, 'dist', 'browser'),
|
|
|
|
libraryTarget: undefined,
|
|
|
|
},
|
|
|
|
externals: {
|
|
|
|
'perf_hooks': 'commonjs perf_hooks',
|
|
|
|
}
|
|
|
|
})];
|