mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-18 15:55:59 +01:00
Convert extension webpack scripts to modules
This commit is contained in:
@@ -2,21 +2,17 @@
|
||||
* 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 CopyPlugin from 'copy-webpack-plugin';
|
||||
import { browser, browserPlugins } from '../shared.webpack.config.mjs';
|
||||
|
||||
//@ts-check
|
||||
|
||||
'use strict';
|
||||
|
||||
const CopyPlugin = require('copy-webpack-plugin');
|
||||
const { browserPlugins, browser } = require('../shared.webpack.config');
|
||||
|
||||
module.exports = browser({
|
||||
context: __dirname,
|
||||
export default browser({
|
||||
context: import.meta.dirname,
|
||||
entry: {
|
||||
extension: './src/extension.browser.ts'
|
||||
},
|
||||
plugins: [
|
||||
...browserPlugins(__dirname), // add plugins, don't replace inherited
|
||||
...browserPlugins(import.meta.dirname), // add plugins, don't replace inherited
|
||||
new CopyPlugin({
|
||||
patterns: [
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user