12345678910111213141516171819202122232425262728293031323334353637 |
- {
- "compilerOptions": {
- "target": "ESNext",
- "lib": [
- "DOM",
- "DOM.Iterable",
- "ESNext"
- ],
- "sourceMap": true,
- "outDir": "lib",
- "allowJs": false,
- "skipLibCheck": false,
- "esModuleInterop": true,
- "allowSyntheticDefaultImports": true,
- "strict": true,
- "strictNullChecks": true,
- "forceConsistentCasingInFileNames": true,
- "module": "ESNext",
- "moduleResolution": "Node",
- "resolveJsonModule": true,
- "isolatedModules": false,
- "jsx": "react-jsx",
- "declaration": true,
- "experimentalDecorators": true,
- "emitDecoratorMetadata": true,
- "typeRoots": [
- "node_modules/@types"
- ],
- "noFallthroughCasesInSwitch": true
- },
- "include": [
- "./src"
- ],
- "exclude": [
- "node_modules"
- ]
- }
|