pixelverse-helper/.vscode/tasks.json
2023-08-28 20:17:50 -04:00

19 lines
439 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"type": "shell",
"command": "${workspaceFolder}\\node_modules\\.bin\\tsc",
"args": ["--project", "${workspaceFolder}\\tsconfig.json"]
}
],
"windows": {
"options": {
"shell": {
"executable": "cmd.exe",
"args": ["/d", "/c"]
}
}
}
}