tsconfig.json 591 B

123456789101112131415161718192021
  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. "declaration": true
  19. },
  20. "include": [ "src/**/*" ]
  21. }