vscode/extensions/terminal-suggest/extension-browser.webpack.c...

26 lines
688 B
JavaScript
Raw Permalink Normal View History

2024-09-18 03:46:46 +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 withBrowserDefaults = require('../shared.webpack.config').browser;
2024-11-19 05:03:14 +08:00
module.exports = withBrowserDefaults({
2024-09-18 03:46:46 +08:00
context: __dirname,
entry: {
2024-11-19 05:03:14 +08:00
extension: './src/terminalSuggestMain.ts'
2024-09-18 03:46:46 +08:00
},
output: {
2024-11-19 05:03:14 +08:00
filename: 'terminalSuggestMain.js'
2024-09-18 03:46:46 +08:00
},
resolve: {
fallback: {
'child_process': false
}
}
});