- Deleted List.tsx, action.tsx, react.svg, client.tsx, entry.browser.tsx, entry.rsc.tsx, entry.ssr.tsx, error-boundary.tsx, request.tsx, index.css, and root.tsx as they were no longer needed. - Updated List component in pages/a/index.tsx to use useEffect for client-side behavior. - Removed pages/b/index.tsx as it was redundant. - Added new browser-entry.tsx and entry.tsx for client-side and server-side rendering respectively. - Introduced versioned component in pages/v/a/index.tsx to demonstrate async data fetching. - Updated tsconfig.json to allow unused local variables.x
22 lines
433 B
JSON
22 lines
433 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": [
|
|
"node",
|
|
],
|
|
"jsx": "react-jsx"
|
|
}
|
|
} |