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:
James Clark 2022-03-15 22:01:16 -04:00 committed by GitHub
parent a3f48af151
commit ccb90c24f0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 3 deletions

4
.vscode/tasks.json vendored
View File

@ -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,

View File

@ -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'
}
}]; }];
}; };