Adds check-deps.ts which ensures backend/package.json doesn't duplicate any dependencies already provided by backend/diachron/package.json. Integrated into backend/check.sh. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
15 lines
365 B
JSON
15 lines
365 B
JSON
{
|
|
"compilerOptions": {
|
|
"esModuleInterop": true,
|
|
"target": "ES2022",
|
|
"lib": ["ES2023"],
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
"noImplicitAny": true,
|
|
"strict": true,
|
|
"types": ["node"],
|
|
"outDir": "out"
|
|
},
|
|
"exclude": ["**/*.spec.ts", "**/*.test.ts", "check-deps.ts"]
|
|
}
|