codernew-api-frontend/tsconfig.json
gaoziman 0a1ad7aa8f chore(配置): 添加项目核心配置文件
- 配置 package.json 项目依赖和脚本
- 配置 TypeScript 编译选项
- 配置 Vite 构建工具和开发服务器
2025-11-05 09:47:17 +08:00

25 lines
569 B
JSON

{
"compilerOptions": {
"target": "es5",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": false,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
"baseUrl": ".",
"paths": {
"@/*": ["src/*"]
}
},
"include": ["src"]
}