tsconfig.json 283 B

1234567891011121314
  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. "noImplicitAny": false
  9. },
  10. "include": [
  11. "src"
  12. ]
  13. }