douyin-archive/.vscode/tasks.json
2025-10-20 13:06:06 +08:00

18 lines
265 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"
}
]
}