Implement API endpoints and frontend components for creating and managing timesheets, projects, and dashboard functionalities. Replit-Commit-Author: Agent Replit-Commit-Session-Id: 55837015-10e9-4be9-b857-7f5e6be73772 Replit-Commit-Checkpoint-Type: full_checkpoint Replit-Commit-Event-Id: e5763354-5d83-482b-a89e-394e3eb5a41e Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/1cc377db-7ea0-49f2-97ce-c3e87e0228cc/55837015-10e9-4be9-b857-7f5e6be73772/JpyvMwJ Replit-Helium-Checkpoint-Created: true
23 lines
520 B
JSON
23 lines
520 B
JSON
{
|
|
"extends": "../../tsconfig.base.json",
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules", "build", "dist", "**/*.test.ts"],
|
|
"compilerOptions": {
|
|
"noEmit": true,
|
|
"jsx": "preserve",
|
|
"lib": ["esnext", "dom", "dom.iterable"],
|
|
"resolveJsonModule": true,
|
|
"allowImportingTsExtensions": true,
|
|
"moduleResolution": "bundler",
|
|
"types": ["node", "vite/client"],
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
}
|
|
},
|
|
"references": [
|
|
{
|
|
"path": "../../lib/api-client-react"
|
|
}
|
|
]
|
|
}
|