tsconfig.json 329 B

123456789101112131415161718
  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. "noImplicitAny": false
  12. },
  13. "include": [
  14. "src"
  15. ]
  16. }