vscode/extensions/typescript-language-features/extension.webpack.config.js
Johannes Rieken 099d99b76c wip
2018-08-24 14:54:50 +02:00

24 lines
627 B
JavaScript

/*---------------------------------------------------------------------------------------------
* 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');
module.exports = withDefaults({
context: __dirname,
node: {
__dirname: false,
},
resolve: {
mainFields: ['module', 'main']
},
entry: {
extension: './src/extension.ts',
}
});