Files
NativeScript/.vscode/tasks.json
Ruslan Lekhman 7860d515a8 fix(core): windows build (#10056)
Co-authored-by: Nathan Walker <walkerrunpdx@gmail.com>
2022-10-14 18:53:57 -07:00

15 lines
398 B
JSON

{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "tsc-unit-tests",
"type": "shell",
"problemMatcher": "$tsc",
"command": "./node_modules/.bin/tsc",
"args": [ "-p", "unit-tests/tsconfig.json" ],
}
]
}