Files
patatapack2-distribution/.vscode/tasks.json
Daniel Scalzi bac2480c1b Add option to install a generated distro to the local Helios data folder
* Run g distro with --installLocal to have the generated file be copied into the local helios data folder.
* New property required in the .env, HELIOS_DATA_FOLDER
* Added two launch configurations to vs code.
2020-06-29 18:07:46 -04:00

28 lines
692 B
JSON

{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "compile",
"type": "typescript",
"tsconfig": "tsconfig.json",
"problemMatcher": [
"$tsc"
],
"presentation": {
"reveal": "silent"
}
},
{
"label": "build",
"type": "npm",
"script": "build",
"group": "build",
"problemMatcher": [],
"presentation": {
"reveal": "silent"
}
}
]
}