tsconfig.json 450 B

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