-
Notifications
You must be signed in to change notification settings - Fork 30.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Closes microsoft/vscode-internalbacklog/issues/1208
- Loading branch information
Jackson Kearl
committed
Jul 30, 2020
1 parent
85cd6f0
commit 9c525f3
Showing
2 changed files
with
23 additions
and
0 deletions.
There are no files selected for viewing
22 changes: 22 additions & 0 deletions
22
extensions/search-result/extension-browser.webpack.config.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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') | ||
} | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters