Convert extension webpack scripts to modules

This commit is contained in:
Matt Bierner
2025-08-07 17:20:22 -07:00
parent 86ff5cd43b
commit ed71020bfc
58 changed files with 303 additions and 527 deletions

View File

@@ -2,16 +2,12 @@
* 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 withBrowserDefaults = require('../../shared.webpack.config').browser;
const path = require('path');
// @ts-check
import { browser as withBrowserDefaults } from '../../shared.webpack.config.mjs';
import path from 'path';
const serverConfig = withBrowserDefaults({
context: __dirname,
context: import.meta.dirname,
entry: {
extension: './src/browser/htmlServerWorkerMain.ts',
},
@@ -23,7 +19,7 @@ const serverConfig = withBrowserDefaults({
},
output: {
filename: 'htmlServerMain.js',
path: path.join(__dirname, 'dist', 'browser'),
path: path.join(import.meta.dirname, 'dist', 'browser'),
libraryTarget: 'var',
library: 'serverExportVar'
},
@@ -38,9 +34,9 @@ serverConfig.module.rules.push({
test: /javascriptLibs.ts$/,
use: [
{
loader: path.resolve(__dirname, 'build', 'javaScriptLibraryLoader.js')
loader: path.resolve(import.meta.dirname, 'build', 'javaScriptLibraryLoader.js')
}
]
});
module.exports = serverConfig;
export default serverConfig;