vscode/extensions/emmet/extension.webpack.config.js

21 lines
621 B
JavaScript
Raw Normal View History

2018-08-09 10:07:01 +00: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
2018-08-09 10:07:01 +00:00
'use strict';
2018-08-20 13:23:56 +00:00
const withDefaults = require('../shared.webpack.config');
2018-08-09 10:07:01 +00:00
module.exports = withDefaults({
2018-08-20 13:23:56 +00:00
context: __dirname,
entry: {
extension: './src/extension.ts',
},
2018-08-09 10:07:01 +00:00
externals: {
'vscode-emmet-helper': 'commonjs vscode-emmet-helper',
2018-08-09 10:07:01 +00:00
},
});