cloudflare/vinext

Public

mirrored from https://github.com/cloudflare/vinextAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
v0.0.9

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

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