File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -57,7 +57,9 @@ function withNodeDefaults(/**@type WebpackConfig*/extConfig) {
57
57
} ]
58
58
} ,
59
59
externals : {
60
- 'vscode' : 'commonjs vscode' , // ignored because it doesn't exist
60
+ 'vscode' : 'commonjs vscode' , // ignored because it doesn't exist,
61
+ 'applicationinsights-native-metrics' : 'commonjs applicationinsights-native-metrics' , // ignored because we don't ship native module
62
+ '@opentelemetry/tracing' : 'commonjs @opentelemetry/tracing' // ignored because we don't ship this module
61
63
} ,
62
64
output : {
63
65
// all output goes into `dist`.
@@ -112,7 +114,9 @@ function withBrowserDefaults(/**@type WebpackConfig*/extConfig) {
112
114
} ]
113
115
} ,
114
116
externals : {
115
- 'vscode' : 'commonjs vscode' , // ignored because it doesn't exist
117
+ 'vscode' : 'commonjs vscode' , // ignored because it doesn't exist,
118
+ 'applicationinsights-native-metrics' : 'commonjs applicationinsights-native-metrics' , // ignored because we don't ship native module
119
+ '@opentelemetry/tracing' : 'commonjs @opentelemetry/tracing' // ignored because we don't ship this module
116
120
} ,
117
121
performance : {
118
122
hints : false
You can’t perform that action at this time.
0 commit comments