Created
September 25, 2018 18:43
-
-
Save szul/76dd7bac5d0811696f97720bc45c5e79 to your computer and use it in GitHub Desktop.
Task items for MSBuild, TypeScript, and Firefox debugging, including a task to launch all others
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
// See https://go.microsoft.com/fwlink/?LinkId=733558 | |
// for the documentation about the tasks.json format | |
"version": "2.0.0", | |
"tasks": [ | |
{ | |
"label": "Run", | |
"dependsOn": [ | |
"MSBuild", | |
"TypeScript", | |
"Firefox" | |
], | |
"problemMatcher": [] | |
}, | |
{ | |
"label": "MSBuild", | |
"type": "shell", | |
"command": "msbuild", | |
"args": [ | |
"/property:GenerateFullPaths=true", | |
"/property:Configuration=Debug", | |
"/t:build" | |
], | |
"group": "build", | |
"presentation": { | |
"reveal": "always" | |
}, | |
"problemMatcher": "$msCompile" | |
}, | |
{ | |
"label": "TypeScript", | |
"type": "typescript", | |
"tsconfig": "tsconfig.json", | |
"problemMatcher": "$tsc", | |
"group": { | |
"kind": "build", | |
"isDefault": true | |
} | |
}, | |
{ | |
"label": "Firefox", | |
"type": "shell", | |
"command": "C:\\Program Files\\Mozilla Firefox\\firefox.exe", | |
"windows": { | |
"command": "C:\\Program Files\\Mozilla Firefox\\firefox.exe" | |
}, | |
"args": [ | |
"-start-debugger-server" | |
] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment