forked from LeenkxTeam/LNXSDK
29 lines
374 B
JSON
29 lines
374 B
JSON
{
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"type": "typescript",
|
|
"tsconfig": "tsconfig.json",
|
|
"problemMatcher": [
|
|
"$tsc"
|
|
],
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
}
|
|
},
|
|
{
|
|
"label": "Linter",
|
|
"type": "shell",
|
|
"command": "tslint",
|
|
"args": [
|
|
"-c",
|
|
"tslint.json",
|
|
"src/*.ts",
|
|
"src/Exporters/*.ts",
|
|
],
|
|
"problemMatcher": []
|
|
}
|
|
]
|
|
}
|