Skip to content

Instantly share code, notes, and snippets.

@szul
Created April 3, 2020 12:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save szul/024c5a64505dc3f6d24efbdcac9cbb4a to your computer and use it in GitHub Desktop.
Save szul/024c5a64505dc3f6d24efbdcac9cbb4a to your computer and use it in GitHub Desktop.
VSCode Build
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "build-lms",
"options": {
"cwd": "${workspaceFolder}/apps/lms"
},
"type": "npm",
"script": "build",
"problemMatcher": []
},
{
"label": "build-ots",
"options": {
"cwd": "${workspaceFolder}/apps/ots"
},
"type": "npm",
"script": "build",
"problemMatcher": []
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment