You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

tsconfig.json 611B

12345678910111213141516171819202122232425262728
  1. {
  2. "compilerOptions": {
  3. "target": "es5",
  4. "module": "commonjs",
  5. "lib": [
  6. "es2015"
  7. ],
  8. "declaration": true,
  9. "sourceMap": true,
  10. "outDir": "./dist",
  11. "importHelpers": true,
  12. "strict": true,
  13. "noImplicitAny": true,
  14. "strictNullChecks": true,
  15. "strictFunctionTypes": true,
  16. "strictPropertyInitialization": true,
  17. "noImplicitThis": true,
  18. "alwaysStrict": true,
  19. "noUnusedLocals": true,
  20. "noUnusedParameters": true,
  21. "noImplicitReturns": true,
  22. "noFallthroughCasesInSwitch": true,
  23. "types": [
  24. "node"
  25. ],
  26. "esModuleInterop": true
  27. }
  28. }