| 123456789101112131415161718192021222324 |
- {
- "compilerOptions": {
- "target": "esnext",
- "module": "commonjs",
- "lib": ["dom", "dom.iterable", "esnext"],
- "allowJs": true,
- "declaration": true,
- "skipLibCheck": true,
- "esModuleInterop": true,
- "allowSyntheticDefaultImports": true,
- "forceConsistentCasingInFileNames": true,
- "noFallthroughCasesInSwitch": true,
- "noImplicitAny": true,
- "strict": true,
- "moduleResolution": "node",
- "resolveJsonModule": true,
- "isolatedModules": true,
- "downlevelIteration": true,
- "noEmitOnError": false,
- "jsx": "react-jsx",
- "outDir": "lib"
- },
- "include": ["src"]
- }
|