Pijul source control integration extension for Visual Studio Code
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
{
	"version": "2.0.0",
	"tasks": [
		{
			"type": "npm",
			"script": "watch",
			"problemMatcher": {
                "owner": "typescript",
                "fileLocation": "relative",
                "background": {
                    "activeOnStart": true,
                    "beginsPattern": "webpack --watch --config .*$",
                    "endsPattern": "webpack [\\.\\d]+ compiled successfully in \\d+ ms"
                },
                "pattern": [
                    {
                        "regexp": "ERROR in ([^\\(]*)\\((\\d+),(\\d+)\\):",
                        "file": 1,
                        "line": 2,
                        "column": 3
                    },
                    {
                        "regexp": "([A-Za-z0-9-]+):(.*)",
                        "message": 2,
                        "code": 1
                    }
                ]
            },
			"isBackground": true,
			"presentation": {
				"reveal": "never"
			},
			"group": {
				"kind": "build",
				"isDefault": true
			}
		},
		{
			"type": "npm",
			"script": "test-watch",
			"problemMatcher": "$tsc-watch",
			"isBackground": true,
			"presentation": {
				"reveal": "never"
			},
			"group": "build"
		}
	]
}