chore(config): 🔧 Update build configuration files for new dependencies

Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
This commit is contained in:
autocommit 2026-06-10 14:58:14 -07:00
parent 12de9ea5e5
commit d8a0fb4fd7
3 changed files with 24 additions and 1 deletions

View file

@ -0,0 +1,13 @@
{
"compilerOptions": {
"target": "ESNext",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"noEmit": true,
"types": ["bun"]
},
"include": ["src"]
}

View file

@ -149,7 +149,10 @@ export default defineConfig({
server: {
port: parseInt(process.env.VITE_PORT || '5120', 10),
host: '0.0.0.0',
strictPort: false,
// strictPort: fail loudly if 5120 is taken instead of silently wandering
// onto a sibling's port (e.g. admin's 5121), which routes admin.quinn.* to
// the public-site app and 502s.
strictPort: true,
open: false,
proxy: {
'/api/i18n': {

View file

@ -30,6 +30,13 @@ QUINN_M_SYNC_PORT=3100
QUINN_M_API_PORT=3105
QUINN_M_RELATIONSHIP_PORT=3803
# ── MCP servers (Streamable HTTP, prod on black) ─────────────────────────────
QUINN_MCP_MY_PORT=3910
QUINN_MCP_ADMIN_PORT=3911
QUINN_MCP_PROSPECTOR_PORT=3912
QUINN_MCP_MESSENGER_PORT=3913
QUINN_MCP_DATA_PORT=3914
# ── Analytics cluster ─────────────────────────────────────────────────────────
PLATFORM_ANALYTICS_COLLECTOR_PORT=4001
PLATFORM_ANALYTICS_PROCESSOR_PORT=4002