[php] add webpack support #57680

This commit is contained in:
Martin Aeschlimann
2018-09-19 16:49:01 +02:00
parent f8a736c017
commit d216f0e06e
5 changed files with 26 additions and 271 deletions

View File

@@ -0,0 +1,20 @@
/*---------------------------------------------------------------------------------------------
* 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: {
extension: './src/phpMain.ts',
},
output: {
filename: 'phpMain.js'
}
});