tsconfig.json 743 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "compilerOptions": {
  3. "strictNullChecks": true,
  4. "noImplicitAny": true,
  5. "module": "CommonJS",
  6. "target": "ES5",
  7. "allowJs": false,
  8. "experimentalDecorators": true,
  9. "noImplicitThis": true,
  10. "noImplicitReturns": true,
  11. "alwaysStrict": true,
  12. "inlineSourceMap": true,
  13. "inlineSources": true,
  14. "noFallthroughCasesInSwitch": true,
  15. "noUnusedLocals": true,
  16. "noUnusedParameters": true,
  17. "strict": true,
  18. "removeComments": true,
  19. "pretty": true,
  20. "strictPropertyInitialization": true,
  21. "lib": ["es6", "ES2015", "ES2015.Promise", "ES2016", "ES2016.Array.Include"],
  22. "typeRoots": [
  23. "./typings"
  24. ]
  25. },
  26. "include": [
  27. "./**/*.ts"
  28. ],
  29. "exclude": [
  30. "node_modules"
  31. ]
  32. }