| 123456789101112131415161718192021 |
- {
- "$schema": "http://json.schemastore.org/tsconfig",
- "extends": "../../tsconfig.base.json",
- "compilerOptions": {
- "jsx": "react-jsx",
- "types": [
- "vitest/globals"
- ],
- /* TODO: remove below flags for strict checking */
- "strict": false,
- "strictNullChecks": true,
- "strictBindCallApply": true,
- "noImplicitAny": false,
- "noImplicitOverride": true
- },
- "include": [
- "src"
- ]
- }
|