26 lines
508 B
JSON
26 lines
508 B
JSON
{
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"type": "typescript",
|
|
"tsconfig": "tsconfig.json",
|
|
"problemMatcher": ["$tsc"],
|
|
"group": "build",
|
|
"label": "tsc: build - tsconfig.json"
|
|
},
|
|
{
|
|
"label": "myShellCommand",
|
|
"type": "shell",
|
|
"command": "echo goodfood"
|
|
},
|
|
{
|
|
"type": "npm",
|
|
"script": "build",
|
|
"group": "build",
|
|
"problemMatcher": [],
|
|
"label": "npm: build",
|
|
"detail": "npm run generate && npx tsc"
|
|
}
|
|
]
|
|
}
|