web-atoms-mvvm
Version:
MVVM, REST Json Service, Message Subscriptions for Web Atoms
41 lines (39 loc) • 1.08 kB
JSON
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"type": "typescript",
"tsconfig": "tsconfig.json",
"group": {
"kind": "build",
"isDefault": true
}
},
{
"type": "typescript",
"tsconfig": "tests/tsconfig.json",
"group": {
"kind": "build",
"isDefault": true
}
},
{
"taskName": "Component Compiler",
"command": "node",
"isBackground": true,
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "dedicated"
},
"args": [
"bin/component-generator.js",
"tests"
],
"problemMatcher": "$tsc-watch"
}
]
}