Quellcode durchsuchen

Makes compile the default build task

main
Eric Amodio vor 7 Jahren
Ursprung
Commit
a014b8fd49
1 geänderte Dateien mit 7 neuen und 3 gelöschten Zeilen
  1. +7
    -3
      .vscode/tasks.json

+ 7
- 3
.vscode/tasks.json Datei anzeigen

@ -20,11 +20,14 @@
"label": "compile",
"type": "npm",
"script": "compile",
"group": "build",
"problemMatcher": [
"$tsc",
"$tslint5"
]
],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "lint",
@ -32,7 +35,8 @@
"script": "lint",
"problemMatcher": [
"$tslint5"
]
],
"group": "build"
},
{
"type": "npm",

Laden…
Abbrechen
Speichern