選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

tasks.json 246B

12345678910111213
  1. {
  2. "version": "2.0.0",
  3. "tasks": [
  4. {
  5. "label": "Check for type errors",
  6. "type": "typescript",
  7. "tsconfig": "tsconfig.json",
  8. "option": "watch",
  9. "problemMatcher": ["$tsc-watch"],
  10. "group": "build"
  11. }
  12. ]
  13. }