Fix problemMatcher patterns for the watch task (#1137)
Webpack output patterns have changed since these patterns were written, without this change the default launch config hangs.
This commit is contained in:
parent
a3f48af151
commit
ccb90c24f0
|
@ -25,8 +25,8 @@
|
|||
],
|
||||
"background": {
|
||||
"activeOnStart": true,
|
||||
"beginsPattern": "Compilation \\w+ starting…",
|
||||
"endsPattern": "Compilation\\s+finished"
|
||||
"beginsPattern": "Compiler '[^']+' starting",
|
||||
"endsPattern": "Compiler '[^']+' finished"
|
||||
}
|
||||
},
|
||||
"isBackground": true,
|
||||
|
|
|
@ -35,6 +35,9 @@ module.exports = function (env, argv) {
|
|||
'applicationinsights-native-metrics': 'commonjs applicationinsights-native-metrics', // ignored because we don't ship native module
|
||||
vscode: 'commonjs vscode'
|
||||
},
|
||||
devtool: 'source-map'
|
||||
devtool: 'source-map',
|
||||
infrastructureLogging: {
|
||||
level: 'log'
|
||||
}
|
||||
}];
|
||||
};
|
Loading…
Reference in New Issue