tsconfig.json 424 B

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