Files
test-rsc-2/tsconfig.json
2026-04-14 11:25:25 +08:00

23 lines
446 B
JSON

{
"compilerOptions": {
"erasableSyntaxOnly": true,
"allowImportingTsExtensions": true,
"noUnusedLocals": false,
"noUnusedParameters": true,
"skipLibCheck": true,
"verbatimModuleSyntax": true,
"noEmit": true,
"moduleResolution": "Bundler",
"module": "ESNext",
"target": "ESNext",
"lib": [
"ESNext",
"DOM"
],
"types": [
"bun",
"node",
],
"jsx": "react-jsx"
}
}