Eric Bower
·
2025-06-06
tsconfig.json
1{
2 "$schema": "https://json.schemastore.org/tsconfig",
3 "compilerOptions": {
4 "baseUrl": ".",
5 "types": ["vitest/globals"],
6 "lib": ["dom", "dom.iterable", "esnext"],
7 "allowJs": true,
8 "skipLibCheck": true,
9 "esModuleInterop": true,
10 "allowSyntheticDefaultImports": true,
11 "strict": true,
12 "forceConsistentCasingInFileNames": true,
13 "target": "esnext",
14 "module": "esnext",
15 "moduleResolution": "bundler",
16 "resolveJsonModule": true,
17 "isolatedModules": true,
18 "noEmit": true,
19 "noUnusedLocals": true,
20 "jsx": "react-jsx"
21 },
22 "include": ["./src"]
23}