forked from claude-did-this/claude-hub
* fix: Improve production deployment configuration - Update default port from 3003 to 3002 for consistency - Make port configurable via environment variable in docker-compose - Add .env file loading support in start-api.sh - Optimize startup.sh for production (skip builds, expect pre-built dist) - Make Claude Code image build conditional on Dockerfile availability - Fix rate limiting configuration for proxy environments - Remove jest types from tsconfig (not needed in production) These changes improve deployment flexibility and production readiness. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com> * fix: Address PR review feedback - Fix port inconsistency: Change hardcoded 3003 to 3002 in src/index.ts - Fix security risk: Replace unsafe export command with set -a/source/set +a - Remove unnecessary Dockerfile.claudecode volume mount from docker-compose (The Dockerfile already copies all necessary files during build) These changes address all critical issues identified in the PR review. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com> --------- Co-authored-by: Claude <noreply@anthropic.com>
54 lines
1.2 KiB
JSON
54 lines
1.2 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "CommonJS",
|
|
"lib": ["ES2022"],
|
|
"outDir": "./dist",
|
|
"rootDir": "./src",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"resolveJsonModule": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"sourceMap": true,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"removeComments": false,
|
|
"noImplicitAny": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"exactOptionalPropertyTypes": false,
|
|
"noImplicitOverride": true,
|
|
"noPropertyAccessFromIndexSignature": false,
|
|
"noUncheckedIndexedAccess": false,
|
|
"allowUnusedLabels": false,
|
|
"allowUnreachableCode": false,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noErrorTruncation": true,
|
|
"isolatedModules": true,
|
|
"types": ["node"]
|
|
},
|
|
"include": [
|
|
"src/**/*"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"dist",
|
|
"coverage",
|
|
"test-results",
|
|
"test/**/*",
|
|
"**/*.test.ts",
|
|
"**/*.test.js",
|
|
"**/*.spec.ts",
|
|
"**/*.spec.js"
|
|
],
|
|
"ts-node": {
|
|
"files": true,
|
|
"compilerOptions": {
|
|
"module": "CommonJS"
|
|
}
|
|
}
|
|
} |