- Add multi-stage Dockerfile for server containerization - Add .dockerignore to exclude unnecessary files from build context - Switch shared package from source to compiled CommonJS output (dist/) - Server dev/build scripts now build shared package first - Fix deep imports to use @calchat/shared barrel export - Update CLAUDE.md with Docker and shared package documentation
15 lines
288 B
JSON
15 lines
288 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"declaration": true,
|
|
"outDir": "dist",
|
|
"rootDir": "src",
|
|
"module": "CommonJS",
|
|
"target": "ES2020",
|
|
"moduleResolution": "Node",
|
|
"esModuleInterop": true,
|
|
"strict": true
|
|
},
|
|
"include": ["src"]
|
|
}
|