VTable/.vscode/tasks.json
2023-06-05 18:48:40 +08:00

23 lines
481 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "web",
"type": "shell",
"isBackground": true,
"command": "${workspaceFolder}/node_modules/.bin/tsc",
"args": [
"${file}",
"--outFile",
"${workspaceFolder}/packages/VTable/test/dist/index.js",
"--strict",
"--experimentalDecorators",
"--sourceMap",
"--skipLibCheck",
"--watch"
],
"problemMatcher": ["$tsc-watch"]
}
]
}