24 lines
314 B
JSON
Raw Permalink Normal View History

2025-01-22 16:18:30 +01:00
{
"version": "2.0.0",
"tasks": [
{
"type": "typescript",
"tsconfig": "tsconfig.json",
"problemMatcher": [
"$tsc"
]
},
{
"label": "Linter",
"type": "shell",
"command": "tslint",
"args": [
"-c",
"tslint.json",
"src/*.ts",
"src/Exporters/*.ts",
],
"problemMatcher": []
}
]
}