Files
optolith-client/.vscode/tasks.json
T
2016-10-04 21:03:00 +02:00

18 lines
368 B
JSON

{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "0.1.0",
"command": "babel",
"isShellCommand": true,
"tasks": [
{
"taskName": "Compile ES6",
"suppressTaskName": true,
"isBuildCommand": true,
"isWatching": false,
"args": [
"js-src", "--out-dir", "js", "-w"
]
}
]
}