From 721b70f6fb4f53cc4d0e0f9e86a886cbf28239e2 Mon Sep 17 00:00:00 2001 From: Ron Buckton Date: Wed, 13 May 2015 14:28:03 -0700 Subject: [PATCH 1/2] Added tasks.json to easily use VSCode with TypeScript sources --- .gitignore | 3 ++- .settings/tasks.json | 23 +++++++++++++++++++++++ 2 files changed, 25 insertions(+), 1 deletion(-) create mode 100644 .settings/tasks.json diff --git a/.gitignore b/.gitignore index f487ea6dd2..e92137c26c 100644 --- a/.gitignore +++ b/.gitignore @@ -46,4 +46,5 @@ scripts/*.js.map coverage/ internal/ **/.DS_Store -.settings/ +.settings/* +!.settings/tasks.json diff --git a/.settings/tasks.json b/.settings/tasks.json new file mode 100644 index 0000000000..ffc72d7115 --- /dev/null +++ b/.settings/tasks.json @@ -0,0 +1,23 @@ +// Available variables which can be used inside of strings. +// ${workspaceRoot}: the root folder of the team +// ${file}: the current opened file +// ${fileBasename}: the current opened file's basename +// ${fileDirname}: the current opened file's dirname +// ${fileExtname}: the current opened file's extension +// ${cwd}: the current working directory of the spawned process +{ + "version": "0.1.0", + "command": "jake", + "isShellCommand": true, + "showOutput": "silent", + "tasks": [ + { + "taskName": "local", + "isBuildCommand": true, + "showOutput": "silent", + "problemMatcher": [ + "$tsc" + ] + } + ] +} \ No newline at end of file From 9fc1d3ce478719a7e3af4e373d30f419b8cb283c Mon Sep 17 00:00:00 2001 From: Ron Buckton Date: Tue, 19 May 2015 10:56:46 -0700 Subject: [PATCH 2/2] Adjusted spacing in tasks.json --- .settings/tasks.json | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/.settings/tasks.json b/.settings/tasks.json index ffc72d7115..e617f22837 100644 --- a/.settings/tasks.json +++ b/.settings/tasks.json @@ -6,18 +6,18 @@ // ${fileExtname}: the current opened file's extension // ${cwd}: the current working directory of the spawned process { - "version": "0.1.0", - "command": "jake", - "isShellCommand": true, - "showOutput": "silent", - "tasks": [ - { - "taskName": "local", - "isBuildCommand": true, - "showOutput": "silent", - "problemMatcher": [ - "$tsc" - ] - } - ] + "version": "0.1.0", + "command": "jake", + "isShellCommand": true, + "showOutput": "silent", + "tasks": [ + { + "taskName": "local", + "isBuildCommand": true, + "showOutput": "silent", + "problemMatcher": [ + "$tsc" + ] + } + ] } \ No newline at end of file