1234567891011121314151617181920212223242526 |
- {
- "compilerOptions": {
- "target": "ESNext",
- "lib": ["DOM", "DOM.Iterable", "ESNext"],
- "module": "ESNext",
- "skipLibCheck": true,
- /* Bundler mode */
- "allowJs": true,
- "allowSyntheticDefaultImports": true,
- "esModuleInterop": true,
- "moduleResolution": "node",
- "noEmit": true,
- "resolveJsonModule": true,
- "isolatedModules": true,
- "jsx": "react-jsx",
- /* Linting */
- "strict": true,
- "noUnusedLocals": true,
- "noUnusedParameters": true,
- "noFallthroughCasesInSwitch": true
- },
- "include": ["src"],
- "references": [{ "path": "./tsconfig.node.json" }]
- }
|