{ "compilerOptions": { /* Language and Environment */ "target": "ES2020", "lib": ["ES2020", "DOM", "DOM.Iterable"], "jsx": "react-jsx", "useDefineForClassFields": true, /* Modules */ "module": "ESNext", "moduleResolution": "bundler", "baseUrl": ".", "paths": { "@/*": ["src/*"] }, "resolveJsonModule": true, "allowImportingTsExtensions": true, "isolatedModules": true, /* JavaScript Support */ "allowJs": false, "checkJs": false, /* Emit */ "noEmit": true, "sourceMap": true, "outDir": "./dist", /* Type Checking */ "strict": true, "noImplicitAny": true, "strictNullChecks": true, "strictFunctionTypes": true, "strictBindCallApply": true, "strictPropertyInitialization": true, "noImplicitThis": true, "useUnknownInCatchVariables": true, "alwaysStrict": true, "noImplicitReturns": true, "noFallthroughCasesInSwitch": true, "noUncheckedIndexedAccess": true, "noImplicitOverride": true, "noPropertyAccessFromIndexSignature": true, /* Completeness */ "skipLibCheck": true, "forceConsistentCasingInFileNames": true, /* Additional Checks */ "noUnusedLocals": true, "noUnusedParameters": true, "exactOptionalPropertyTypes": true, "allowSyntheticDefaultImports": true, "esModuleInterop": true }, "include": ["src/**/*.ts", "src/**/*.tsx", "vitest.config.ts"], "exclude": ["node_modules", "dist"], "references": [{ "path": "./tsconfig.node.json" }] }