You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
constsponsorwareDisplayCount=this.context.globalState.get<number>('iisexpress.sponsorware.display.count',10);// Default to 10 if the random number not been set
32
35
36
+
this.outputWindow.appendLine(`[Sponsorware] Total count ${this.totalCount}`);
Copy file name to clipboardExpand all lines: webpack.config.js
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,8 @@ const config = {
18
18
},
19
19
devtool: 'source-map',
20
20
externals: {
21
-
vscode: 'commonjs vscode'// the vscode-module is created on-the-fly and must be excluded. Add other modules that cannot be webpack'ed, 📖 -> https://webpack.js.org/configuration/externals/
21
+
vscode: 'commonjs vscode',// the vscode-module is created on-the-fly and must be excluded. Add other modules that cannot be webpack'ed, 📖 -> https://webpack.js.org/configuration/externals/
22
+
'applicationinsights-native-metrics': 'commonjs applicationinsights-native-metrics'// ignored because we don't ship native module
22
23
},
23
24
resolve: {
24
25
// support reading TypeScript and JavaScript files, 📖 -> https://github.com/TypeStrong/ts-loader
0 commit comments