aboutsummaryrefslogtreecommitdiff
path: root/codeless/.vscode/tasks.json
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2018-08-10 23:04:09 +0100
committerAleksey Kladov <[email protected]>2018-08-10 23:04:09 +0100
commitf99551f46b1583ed43751e4d26fe76a0b913eb5f (patch)
treef0ab26d58c5bfd7237eb2f0117fcc141a1c3a5f4 /codeless/.vscode/tasks.json
parent9863b9161d8d702848516be70c5c8161b7f382e8 (diff)
reorganize
Diffstat (limited to 'codeless/.vscode/tasks.json')
-rw-r--r--codeless/.vscode/tasks.json31
1 files changed, 0 insertions, 31 deletions
diff --git a/codeless/.vscode/tasks.json b/codeless/.vscode/tasks.json
deleted file mode 100644
index 8e5a8b9ef..000000000
--- a/codeless/.vscode/tasks.json
+++ /dev/null
@@ -1,31 +0,0 @@
1
2// Available variables which can be used inside of strings.
3// ${workspaceRoot}: the root folder of the team
4// ${file}: the current opened file
5// ${fileBasename}: the current opened file's basename
6// ${fileDirname}: the current opened file's dirname
7// ${fileExtname}: the current opened file's extension
8// ${cwd}: the current working directory of the spawned process
9
10// A task runner that calls a custom npm script that compiles the extension.
11{
12 "version": "0.2.0",
13
14 // we want to run npm
15 "command": "npm",
16
17 // the command is a shell script
18 "isShellCommand": true,
19
20 // show the output window only if unrecognized errors occur.
21 "showOutput": "silent",
22
23 // we run the custom script "compile" as defined in package.json
24 "args": ["run", "compile", "--loglevel", "silent"],
25
26 // The tsc compiler is started in watching mode
27 "isBackground": true,
28
29 // use the standard tsc in watch mode problem matcher to find compile problems in the output.
30 "problemMatcher": "$tsc-watch"
31}