- 实现签到主页面,包含签到按钮、连续天数、今日状态展示 - 实现签到记录页面,包含日历视图和签到历史列表 - 实现个人中心页面,包含用户信息和签到统计 - 后端实现签到、查询状态、查询历史三个接口 - 使用 Supabase 存储签到记录数据 - 采用星空主题设计,深蓝紫渐变背景 + 金色星光强调色 - 完成所有接口测试和前后端匹配验证 - 通过 ESLint 检查和编译验证
30 lines
684 B
JSON
30 lines
684 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2017",
|
|
"module": "ESNext",
|
|
"removeComments": false,
|
|
"preserveConstEnums": true,
|
|
"moduleResolution": "bundler",
|
|
"experimentalDecorators": true,
|
|
"noImplicitAny": false,
|
|
"allowSyntheticDefaultImports": true,
|
|
"outDir": "lib",
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"strictNullChecks": true,
|
|
"sourceMap": true,
|
|
"rootDir": ".",
|
|
"jsx": "react-jsx",
|
|
"allowJs": true,
|
|
"resolveJsonModule": true,
|
|
"typeRoots": [
|
|
"node_modules/@types"
|
|
],
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
}
|
|
},
|
|
"include": ["./src", "./types", "./config"],
|
|
"compileOnSave": false
|
|
}
|