Skip to content
This repository was archived by the owner on Nov 16, 2023. It is now read-only.

VSCode tasks.json #70

Open
mikecann opened this issue Oct 8, 2017 · 1 comment
Open

VSCode tasks.json #70

mikecann opened this issue Oct 8, 2017 · 1 comment

Comments

@mikecann
Copy link

mikecann commented Oct 8, 2017

Firstly awesome work with this! Really helps reduce that initial setup time.

I just had a thought, could you include in this project or perhaps recommend a VSCode tasks.json file for matching compile problems when using this project?

That would make things even even faster for people using this as they are likely going to be using VSCode anyways.

@jednano
Copy link

jednano commented Feb 23, 2018

There are no problem matchers for the various npm tasks in this project, so you have to do:

{
	"version": "2.0.0",
	"tasks": [
		{
			"type": "npm",
			"label": "debug",
			"script": "debug",
			"problemMatcher": []
		},
		{
			"type": "npm",
			"label": "start",
			"script": "start",
			"problemMatcher": []
		},
		{
			"type": "npm",
			"label": "build",
			"script": "build",
			"problemMatcher": [],
			"group": {
				"kind": "build",
				"isDefault": true
			}
		},
		{
			"type": "npm",
			"label": "test",
			"script": "test",
			"problemMatcher": [],
			"group": {
				"kind": "test",
				"isDefault": true
			}
		}
	]
}

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants