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,24 +2,20 @@
* 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 withDefaults = require('../shared.webpack.config');
const path = require('path');
// @ts-check
import withDefaults from '../shared.webpack.config.mjs';
import path from 'path';
const config = withDefaults({
context: path.join(__dirname, 'client'),
context: path.join(import.meta.dirname, 'client'),
entry: {
extension: './src/node/jsonClientMain.ts'
},
output: {
filename: 'jsonClientMain.js',
path: path.join(__dirname, 'client', 'dist', 'node')
path: path.join(import.meta.dirname, 'client', 'dist', 'node')
}
});
module.exports = config;
export default config;