tsconfig.json 370 B

123456789101112131415
  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": ["src"]
  14. }