cloudflare/vinext
Publicmirrored from https://github.com/cloudflare/vinextAvailable
examples/nextra-docs-template/tsconfig.json
19lines · modecode
| 1 | { |
| 2 | "compilerOptions": { |
| 3 | "target": "ES2022", |
| 4 | "lib": ["dom", "dom.iterable", "ES2022"], |
| 5 | "allowJs": true, |
| 6 | "skipLibCheck": true, |
| 7 | "strict": true, |
| 8 | "forceConsistentCasingInFileNames": true, |
| 9 | "noEmit": true, |
| 10 | "esModuleInterop": true, |
| 11 | "module": "ESNext", |
| 12 | "moduleResolution": "bundler", |
| 13 | "resolveJsonModule": true, |
| 14 | "isolatedModules": true, |
| 15 | "jsx": "react-jsx" |
| 16 | }, |
| 17 | "include": ["**/*.ts", "**/*.tsx", "**/*.mdx"], |
| 18 | "exclude": ["node_modules"] |
| 19 | } |
| 20 | |