cloudflare/vinext
Publicmirrored from https://github.com/cloudflare/vinextAvailable
examples/hackernews/tsconfig.json
15lines · modecode
| 1 | { |
| 2 | "compilerOptions": { |
| 3 | "target": "ES2022", |
| 4 | "module": "ESNext", |
| 5 | "moduleResolution": "bundler", |
| 6 | "jsx": "react-jsx", |
| 7 | "strict": false, |
| 8 | "esModuleInterop": true, |
| 9 | "skipLibCheck": true, |
| 10 | "allowJs": true, |
| 11 | "baseUrl": ".", |
| 12 | "types": ["@cloudflare/workers-types"] |
| 13 | }, |
| 14 | "include": ["app", "components", "lib", "worker"] |
| 15 | } |
| 16 | |