tsconfig.json 537 B

12345678910111213141516171819202122232425
  1. {
  2. "compilerOptions": {
  3. "target": "es5",
  4. "module": "es2015",
  5. "noImplicitAny": true,
  6. "removeComments": true,
  7. "preserveConstEnums": true,
  8. "sourceMap": true
  9. },
  10. "files": [
  11. "core.ts",
  12. "sys.ts",
  13. "types.ts",
  14. "scanner.ts",
  15. "parser.ts",
  16. "utilities.ts",
  17. "binder.ts",
  18. "checker.ts",
  19. "emitter.ts",
  20. "program.ts",
  21. "commandLineParser.ts",
  22. "tsc.ts",
  23. "diagnosticInformationMap.generated.ts"
  24. ]
  25. }