summaryrefslogtreecommitdiff
path: root/conf/.vscode/tasks.json
diff options
context:
space:
mode:
authorng0 <ng0@n0.is>2019-10-09 17:30:49 +0000
committerng0 <ng0@n0.is>2019-10-09 17:30:49 +0000
commit55bd2280c8a69261f01cd06ae88e3e7ae32cf58b (patch)
tree139a13b17edc0268ba7018875a30ef98bbcd9159 /conf/.vscode/tasks.json
parentf3fcc325beac420111498f428764ccad8109f599 (diff)
downloadbuild-common-55bd2280c8a69261f01cd06ae88e3e7ae32cf58b.tar.gz
build-common-55bd2280c8a69261f01cd06ae88e3e7ae32cf58b.tar.bz2
build-common-55bd2280c8a69261f01cd06ae88e3e7ae32cf58b.zip
check in code independent build system code.
Diffstat (limited to 'conf/.vscode/tasks.json')
-rw-r--r--conf/.vscode/tasks.json44
1 files changed, 44 insertions, 0 deletions
diff --git a/conf/.vscode/tasks.json b/conf/.vscode/tasks.json
new file mode 100644
index 0000000..a141599
--- /dev/null
+++ b/conf/.vscode/tasks.json
@@ -0,0 +1,44 @@
+{
+ // See https://go.microsoft.com/fwlink/?LinkId=733558
+ // for the documentation about the tasks.json format
+ "version": "2.0.0",
+ "tasks": [
+ {
+ "type": "typescript",
+ "tsconfig": "tsconfig.json",
+ "option": "watch",
+ "problemMatcher": [
+ "$tsc-watch"
+ ],
+ "group": "build",
+ "isBackground": true,
+ "promptOnClose": false
+ },
+ {
+ "type": "typescript",
+ "tsconfig": "tsconfig.json",
+ "problemMatcher": [
+ "$tsc"
+ ],
+ "group": "build"
+ },
+ {
+ "label": "tslint",
+ "type": "shell",
+ "command": "make lint",
+ "problemMatcher": {
+ "owner": "tslint",
+ "applyTo": "allDocuments",
+ "fileLocation": "absolute",
+ "severity": "warning",
+ "pattern": "$tslint5"
+ },
+ "group": "build"
+ },
+ {
+ "label": "My Task",
+ "type": "shell",
+ "command": "echo Hello"
+ }
+ ]
+} \ No newline at end of file