tsconfig.json 404 B

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