tsconfig.json 378 B

1234567891011121314151617
  1. {
  2. "$schema": "http://json.schemastore.org/tsconfig",
  3. "extends": "../../tsconfig.base.json",
  4. "compilerOptions": {
  5. "jsx": "react-jsx",
  6. /* TODO: remove below flags for strict checking */
  7. "strict": false,
  8. "strictNullChecks": true,
  9. "strictBindCallApply": true,
  10. "noImplicitAny": false,
  11. "noImplicitOverride": true
  12. },
  13. "include": [
  14. "src"
  15. ]
  16. }