mirror of
https://github.com/bendtherules/github-delete-unused-repos.git
synced 2026-08-18 22:02:57 +00:00
60 lines
1.1 KiB
JSON
60 lines
1.1 KiB
JSON
{
|
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
|
// for the documentation about the tasks.json format
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"taskName": "Run current file",
|
|
"command": "ts-node ${relativeFile}",
|
|
"type": "shell",
|
|
"problemMatcher": []
|
|
},
|
|
{
|
|
"type": "npm",
|
|
"label": "clean",
|
|
"script": "clean",
|
|
"problemMatcher": []
|
|
},
|
|
{
|
|
"type": "npm",
|
|
"label": "build",
|
|
"script": "build",
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
},
|
|
"problemMatcher":[]
|
|
},
|
|
{
|
|
"type": "npm",
|
|
"label": "format",
|
|
"script": "format",
|
|
"problemMatcher": []
|
|
},
|
|
{
|
|
"type": "npm",
|
|
"label": "coverage",
|
|
"script": "coverage",
|
|
"problemMatcher": []
|
|
},
|
|
{
|
|
"type": "npm",
|
|
"label": "test",
|
|
"script": "test",
|
|
"group": {
|
|
"kind": "test",
|
|
"isDefault": true
|
|
},
|
|
"problemMatcher": []
|
|
},
|
|
{
|
|
"type": "npm",
|
|
"label": "lint",
|
|
"script": "lint",
|
|
"problemMatcher": [
|
|
"$eslint-stylish"
|
|
]
|
|
}
|
|
]
|
|
}
|