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

tests/fixtures/app-basic/tsconfig.json

16lines · modecode

1{
2 "compilerOptions": {
3 "target": "ES2022",
4 "module": "ESNext",
5 "moduleResolution": "bundler",
6 "jsx": "react-jsx",
7 "strict": true,
8 "skipLibCheck": true,
9 "types": ["vite/client", "@vitejs/plugin-rsc/types"],
10 "baseUrl": ".",
11 "paths": {
12 "@/*": ["./*"]
13 }
14 },
15 "include": ["app", "*.ts"]
16}
17