| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- {
- "compilerOptions": {
- "forceConsistentCasingInFileNames": true,
- "noFallthroughCasesInSwitch": true,
- "noUncheckedIndexedAccess": true,
- "noStrictGenericChecks": false,
- "allowUnreachableCode": false,
- "verbatimModuleSyntax": false,
- "noImplicitUseStrict": false,
- "noUnusedParameters": true,
- "allowUnusedLabels": false,
- "moduleResolution": "node",
- "noImplicitReturns": true,
- "resolveJsonModule": true,
- "esModuleInterop": true,
- "noUnusedLocals": true,
- "inlineSources": true,
- "skipLibCheck": true,
- "declaration": true,
- "jsx": "react-jsx",
- "composite": false,
- "module": "ESNext",
- "target": "ESNext",
- "lib": [
- "dom.iterable",
- "ESNext",
- "dom"
- ],
- "sourceMap": true,
- "outDir": "./lib",
- "rootDir": "src",
- "noEmit": false,
- "strict": true,
- "types": [
- "node"
- ]
- },
- "include": [
- "src/**/*"
- ],
- "exclude": [
- "node_modules",
- "lib"
- ]
- }
|