theatre/.vscode/tasks.json
Andrew Prifer e3a194c7dd
Playground improvements (#342)
Remove previews, add vs code task, open in chrome
2022-11-22 15:05:11 +00:00

27 lines
680 B
JSON

{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"script": "test -- --watch",
"group": "test",
"problemMatcher": [],
"label": "npm: test"
},
{
"label": "TypeScript watch",
"type": "shell",
"command": "yarn tsc --build --watch ./devEnv/typecheck-all-projects/tsconfig.all.json",
"problemMatcher": ["$tsc-watch"]
},
{
"type": "npm",
"script": "playground",
"problemMatcher": [],
"label": "Playground",
"detail": "yarn workspace playground run serve"
}
]
}