tsconfig.json 584 B

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