tsconfig.json 552 B

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