tsconfig.json 470 B

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