CubismFramework/.vscode/tasks.json

40 lines
654 B
JSON
Raw Normal View History

2020-01-30 17:28:13 +08:00
{
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"script": "install",
"problemMatcher": []
},
{
"type": "npm",
"script": "build",
"group": "build",
"problemMatcher": []
},
{
"type": "npm",
"script": "test",
"group": "test",
"problemMatcher": []
},
{
"type": "npm",
"script": "lint",
"group": "test",
"problemMatcher": []
},
{
"type": "npm",
"script": "lint:fix",
"group": "test",
"problemMatcher": []
},
{
"type": "npm",
"script": "clear",
"problemMatcher": []
}
]
}