douyin-archive/.vscode/tasks.json
2026-04-28 17:11:42 +08:00

20 lines
448 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "tsc-check",
"type": "shell",
"command": "node",
"args": ["-e", "require('typescript').transpile('const x: number = 1;')"],
"problemMatcher": ["$tsc"],
"group": "build"
},
{
"label": "tsc-check (one-off)",
"type": "shell",
"command": "node",
"args": ["-e", "require('typescript').transpile('const x: number = 1;')"]
}
]
}