tsconfig.json 501 B

123456789101112131415161718
  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. "jsx": "react",
  13. "lib": [ "es6", "dom", "esnext.asynciterable", "es2016" ],
  14. "outDir": "build/src",
  15. "rootDir": "src"
  16. },
  17. "include": [ "src/**/*" ],
  18. }