- Created a new SVG logo for Vite. - Added a List component for rendering a simple list. - Implemented server-side counter functionality with actions. - Introduced a React SVG logo for branding. - Developed a ClientCounter component for client-side state management. - Set up entry points for RSC and SSR rendering. - Established error boundary for global error handling. - Created request handling utilities for differentiating RSC and SSR requests. - Added global styles for the application. - Built the main application structure in the Root component. - Configured Vite with RSC and React plugins for optimal development experience.
18 lines
437 B
JSON
18 lines
437 B
JSON
{
|
|
"compilerOptions": {
|
|
"erasableSyntaxOnly": true,
|
|
"allowImportingTsExtensions": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"skipLibCheck": true,
|
|
"verbatimModuleSyntax": true,
|
|
"noEmit": true,
|
|
"moduleResolution": "Bundler",
|
|
"module": "ESNext",
|
|
"target": "ESNext",
|
|
"lib": ["ESNext", "DOM"],
|
|
"types": ["vite/client", "@vitejs/plugin-rsc/types"],
|
|
"jsx": "react-jsx"
|
|
}
|
|
}
|