1{
2 "compilerOptions": {
3 "allowSyntheticDefaultImports": true,
4 "composite": true,
5 "declaration": true,
6 "esModuleInterop": true,
7 "incremental": true,
8 "jsx": "react-jsx",
9 "lib": ["DOM", "ES2022"],
10 "module": "esnext",
11 "moduleResolution": "bundler",
12 "noEmitOnError": true,
13 "noImplicitAny": true,
14 "noUnusedLocals": true,
15 "outDir": "lib",
16 "preserveWatchOutput": true,
17 "resolveJsonModule": true,
18 "rootDir": "src",
19 "skipLibCheck": true,
20 "strict": true,
21 "strictNullChecks": true,
22 "target": "ES2020"
23 },
24 "include": ["src/*"]
25}