Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/extensions/markdown-math/extension-browser.webpack.config.js
3290 views
1
/*---------------------------------------------------------------------------------------------
2
* Copyright (c) Microsoft Corporation. All rights reserved.
3
* Licensed under the MIT License. See License.txt in the project root for license information.
4
*--------------------------------------------------------------------------------------------*/
5
// @ts-check
6
import { browser as withBrowserDefaults } from '../shared.webpack.config.mjs';
7
8
export default withBrowserDefaults({
9
context: import.meta.dirname,
10
entry: {
11
extension: './src/extension.ts'
12
}
13
});
14
15