Skip to content
Snippets Groups Projects
tasks.json 739 B
{
	// See https://go.microsoft.com/fwlink/?LinkId=733558
	// for the documentation about the tasks.json format
	"version": "2.0.0",
	"command": "Test build",
	"tasks": [
		{
			"label": "Compile",
			"type": "shell",
			"command": "./compile.sh",
			"windows": {
				"command": ".\\compile.bat"
			},
			"group": "build",
			"presentation": {
				"reveal": "always",
				"panel": "new"
			},
			"problemMatcher": []
		},
		{
			"label": "Run in Chrome",
			"type": "process",
			"command": "chrome.exe",
			"windows": {
				"command": "C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe"
			},
			"group": "test",
			"args": [
				"${workspaceRoot}/bin/FC_pregmod.html", "--incognito"
			],
			"problemMatcher": [],
		}
	]
}