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

benchmarks/vinext-rolldown/tsconfig.json

20lines · modecode

1{
2 "compilerOptions": {
3 "target": "ES2022",
4 "lib": ["dom", "dom.iterable", "esnext"],
5 "module": "esnext",
6 "moduleResolution": "bundler",
7 "jsx": "react-jsx",
8 "strict": true,
9 "noEmit": true,
10 "skipLibCheck": true,
11 "esModuleInterop": true,
12 "resolveJsonModule": true,
13 "isolatedModules": true,
14 "paths": {
15 "@/*": ["./*"]
16 }
17 },
18 "include": ["**/*.ts", "**/*.tsx"],
19 "exclude": ["node_modules"]
20}