Add support for using the test resolver in the web

This commit is contained in:
Alex Dima
2023-06-03 13:26:51 +02:00
parent 0876c19e0a
commit 5b2f96e69d
6 changed files with 171 additions and 5 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 withBrowserDefaults = require('../shared.webpack.config').browser;
module.exports = withBrowserDefaults({
context: __dirname,
entry: {
extension: './src/extension.browser.ts'
},
output: {
filename: 'testResolverMain.js'
}
});