tsconfig.json 563 B

1234567891011121314151617181920
  1. {
  2. "compilerOptions": {
  3. "target": "es5",
  4. "alwaysStrict": true,
  5. "noImplicitAny": true,
  6. "noImplicitThis": true,
  7. "sourceMap": false,
  8. "noUnusedLocals": true,
  9. "strictNullChecks": true,
  10. "strictFunctionTypes": true,
  11. // "downlevelIteration": true,
  12. "importHelpers": true,
  13. "noEmitHelpers": true,
  14. "jsx": "react",
  15. "lib": [ "es6", "dom", "esnext.asynciterable", "es2016" ],
  16. "outDir": "build/src",
  17. "rootDir": "src"
  18. },
  19. "include": [ "src/**/*" ],
  20. }