18 lines
368 B
JSON
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"
|
|
]
|
|
}
|
|
]
|
|
} |