- Add package.json for the root with workspace configuration and scripts - Create @gruperly/config package with TypeScript configuration - Establish shared package @gruperly/shared with Zod schemas for validation - Implement group, student, and payment schemas using Zod - Set up TypeScript configuration for shared package - Document stack architecture and technical specifications in stack.md - Configure Turborepo with build, dev, lint, and typecheck tasks
11 lines
214 B
JSON
11 lines
214 B
JSON
{
|
|
"extends": "@gruperly/config/tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"moduleResolution": "bundler",
|
|
"paths": {
|
|
"@gruperly/shared": ["./src/index.ts"]
|
|
}
|
|
},
|
|
"include": ["src/**/*.ts"]
|
|
}
|