mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-23 01:25:38 -05:00
* Azure: add PostgresSQL support and refactor to use resource graph - Refactored to use @azure/arm-resourcegraph for all queries - Refactored database lookup to do just 2 queries (all servers, all DBS) instead of waiting serially on 1 query per RG - Added Azure Database for PostgresSQL Servers support in the tree - Removed use of older azure APIs in preference to ones compatible with resource graph - Note: Had to use v1.0 of new subscriptions package because resourcegraph is 2month out of date vs all other packages
23 lines
712 B
JavaScript
23 lines
712 B
JavaScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the Source EULA. 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'
|
|
},
|
|
externals: {
|
|
'@azure/ms-rest-azure-js': 'commonjs @azure/ms-rest-azure-js',
|
|
'@azure/ms-rest-js': 'commonjs @azure/ms-rest-js',
|
|
'request': 'commonjs request'
|
|
}
|
|
});
|