mirror of
https://github.com/VisActor/VTable
synced 2024-11-22 18:57:38 +00:00
23 lines
481 B
JSON
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"]
|
|
}
|
|
]
|
|
}
|