1234567891011121314151617181920212223 |
- {
- "compilerOptions": {
- "strict": true,
- "declaration": false,
- "noEmitOnError": true,
- "noEmit": true,
- "noFallthroughCasesInSwitch": true,
- "moduleResolution": "node",
- "module": "ESNext",
- "target": "ESNext",
- "esModuleInterop": true,
- "isolatedModules": true,
- "lib": ["esnext", "dom"],
- "skipLibCheck": true,
- "resolveJsonModule": true,
- "allowSyntheticDefaultImports": true,
- "downlevelIteration": true,
- "sourceMap": true,
- "outDir": "./dist",
- "jsx": "react-jsx"
- },
- "exclude": ["**/node_modules"]
- }
|