webpack merge-conflict #57680

This commit is contained in:
Johannes Rieken 2018-09-19 15:19:40 +02:00
parent 5788f1d572
commit 3053689bb5
2 changed files with 20 additions and 1 deletions

View file

@ -1,2 +1,4 @@
src/**
tsconfig.json
tsconfig.json
out/**
extension.webpack.config.js

View file

@ -0,0 +1,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
'use strict';
const withDefaults = require('../shared.webpack.config');
module.exports = withDefaults({
context: __dirname,
entry: {
main: './src/extension.ts'
}
});