Files
azuredatastudio/extensions/resource-deployment/extension.webpack.config.js
Charles Gagnon 00feb955d9 Add telemetry for deployment type being selected (#14410)
* Add telemetry for deployment type being selected

* Fix build
2021-02-24 15:47:17 -08:00

24 lines
728 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');
const externals = {
'applicationinsights-native-metrics': 'commonjs applicationinsights-native-metrics',
'@opentelemetry/tracing': 'commonjs @opentelemetry/tracing'
};
module.exports = withDefaults({
context: __dirname,
entry: {
main: './src/main.ts'
},
externals: externals
});