build-common

Shared build system code (usually as a git submodule)
Log | Files | Refs | README | LICENSE

tasks.json (1169B)


      1 {
      2     // See https://go.microsoft.com/fwlink/?LinkId=733558
      3     // for the documentation about the tasks.json format
      4     "version": "2.0.0",
      5     "tasks": [
      6         {
      7             "type": "typescript",
      8             "tsconfig": "tsconfig.json",
      9             "option": "watch",
     10             "problemMatcher": [
     11                 "$tsc-watch"
     12             ],
     13             "group": "build",
     14             "isBackground": true,
     15             "promptOnClose": false
     16         },
     17         {
     18             "type": "typescript",
     19             "tsconfig": "tsconfig.json",
     20             "problemMatcher": [
     21                 "$tsc"
     22             ],
     23             "group": "build"
     24         },
     25         {
     26             "label": "tslint",
     27             "type": "shell",
     28             "command": "make lint",
     29             "problemMatcher": {
     30                 "owner": "tslint",
     31                 "applyTo": "allDocuments",
     32                 "fileLocation": "absolute",
     33                 "severity": "warning",
     34                 "pattern": "$tslint5"
     35             },
     36             "group": "build"
     37         },
     38         {
     39             "label": "My Task",
     40             "type": "shell",
     41             "command": "echo Hello"
     42         }
     43     ]
     44 }