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": {
|
"background": {
|
||||||
"activeOnStart": true,
|
"activeOnStart": true,
|
||||||
"beginsPattern": "Compilation \\w+ starting…",
|
"beginsPattern": "Compiler '[^']+' starting",
|
||||||
"endsPattern": "Compilation\\s+finished"
|
"endsPattern": "Compiler '[^']+' finished"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"isBackground": true,
|
"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
|
'applicationinsights-native-metrics': 'commonjs applicationinsights-native-metrics', // ignored because we don't ship native module
|
||||||
vscode: 'commonjs vscode'
|
vscode: 'commonjs vscode'
|
||||||
},
|
},
|
||||||
devtool: 'source-map'
|
devtool: 'source-map',
|
||||||
|
infrastructureLogging: {
|
||||||
|
level: 'log'
|
||||||
|
}
|
||||||
}];
|
}];
|
||||||
};
|
};
|
Loading…
Reference in New Issue