Splits github fs out into its own extension

This commit is contained in:
Eric Amodio
2020-06-08 15:50:54 -04:00
parent 3a14f91f96
commit 91589cbf8d
20 changed files with 3145 additions and 2952 deletions

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: {
extension: './src/extension.ts'
}
});