web-design-skill/web/tsconfig.app.json
lishiqi.conard 32a23cdc3e Initialize web application with React, TypeScript, and Vite setup
- Added essential project files including package.json, tsconfig, and Vite configuration.
- Created initial components and chapters for the application structure.
- Implemented ESLint configuration for code quality and consistency.
- Included .gitignore files to exclude build artifacts and dependencies.
- Added README for project documentation and setup instructions.
- Integrated a sample video and favicon for the application.
2026-04-21 21:47:16 +08:00

26 lines
617 B
JSON

{
"compilerOptions": {
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
"target": "es2023",
"lib": ["ES2023", "DOM"],
"module": "esnext",
"types": ["vite/client"],
"skipLibCheck": true,
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
"moduleDetection": "force",
"noEmit": true,
"jsx": "react-jsx",
/* Linting */
"noUnusedLocals": true,
"noUnusedParameters": true,
"erasableSyntaxOnly": true,
"noFallthroughCasesInSwitch": true
},
"include": ["src"]
}