tasks.json 243 B

1234567891011121314
  1. {
  2. // 有关 tasks.json 格式的文档,请参见
  3. // https://go.microsoft.com/fwlink/?LinkId=733558
  4. "version": "2.0.0",
  5. "tasks": [
  6. {
  7. "type": "typescript",
  8. "tsconfig": "tsconfig.json",
  9. "problemMatcher": [
  10. "$tsc"
  11. ]
  12. }
  13. ]
  14. }