- Add ESLint configuration for TypeScript and React. - Create index.html as the entry point for the application. - Set up package.json with scripts for development, build, linting, and preview. - Include Vite logo SVG in the public directory. - Add App.css for styling the application. - Implement main App component in App.tsx with basic functionality. - Add React logo SVG to assets. - Create global styles in index.css. - Set up main entry point in main.tsx. - Configure TypeScript with tsconfig files for app and node environments. - Create Vite configuration file for React integration.
27 lines
653 B
JSON
27 lines
653 B
JSON
{
|
|
"compilerOptions": {
|
|
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
|
|
"target": "ES2023",
|
|
"lib": ["ES2023"],
|
|
"module": "ESNext",
|
|
"types": ["node"],
|
|
"skipLibCheck": true,
|
|
|
|
/* Bundler mode */
|
|
"moduleResolution": "bundler",
|
|
"allowImportingTsExtensions": true,
|
|
"verbatimModuleSyntax": true,
|
|
"moduleDetection": "force",
|
|
"noEmit": true,
|
|
|
|
/* Linting */
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"erasableSyntaxOnly": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUncheckedSideEffectImports": true
|
|
},
|
|
"include": ["vite.config.ts"]
|
|
}
|