Files
amayo/.vscode/tasks.json

17 lines
202 B
JSON
Raw Normal View History

{
"version": "2.0.0",
"tasks": [
{
"label": "Typecheck: tsc --noEmit",
"type": "shell",
"command": "npm",
"args": [
"run",
"-s",
"tsc",
"--",
"--noEmit"
]
}
]
}