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
import path from 'path';
import { browser as withBrowserDefaults } from '../shared.webpack.config.mjs';
//@ts-check
'use strict';
const path = require('path');
const withBrowserDefaults = require('../shared.webpack.config').browser;
module.exports = withBrowserDefaults({
context: __dirname,
export default withBrowserDefaults({
context: import.meta.dirname,
entry: {
extension: './src/configurationEditingMain.ts'
},
@@ -20,7 +16,7 @@ module.exports = withBrowserDefaults({
},
resolve: {
alias: {
'./node/net': path.resolve(__dirname, 'src', 'browser', 'net'),
'./node/net': path.resolve(import.meta.dirname, 'src', 'browser', 'net'),
}
}
});