Skip to content

Commit

Permalink
Enable search-editor in serverless.
Browse files Browse the repository at this point in the history
Closes microsoft/vscode-internalbacklog/issues/1208
  • Loading branch information
Jackson Kearl committed Jul 30, 2020
1 parent 85cd6f0 commit 9c525f3
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
22 changes: 22 additions & 0 deletions extensions/search-result/extension-browser.webpack.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
/*---------------------------------------------------------------------------------------------
* 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;
const path = require('path');

module.exports = withBrowserDefaults({
context: __dirname,
entry: {
extension: './src/extension.ts'
},
output: {
filename: 'extension.js',
path: path.join(__dirname, 'dist')
}
});
1 change: 1 addition & 0 deletions extensions/search-result/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
"Programming Languages"
],
"main": "./out/extension.js",
"browser": "./dist/extension.js",
"activationEvents": [
"*"
],
Expand Down

0 comments on commit 9c525f3

Please sign in to comment.