- Local dev WEB_PORT now 9000 to match the planned dev/staging domain test.04080616.xyz. Production deployment uses port 8100 mapped to rexwa.04080616.xyz (configured in plan 4). - apps/bot/tsconfig.json: exclude src/**/*.test.ts from the production build (vitest types only present at dev time, mirrors the same fix we made earlier for packages/shared).
10 lines
181 B
JSON
10 lines
181 B
JSON
{
|
|
"extends": "../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"outDir": "./dist",
|
|
"rootDir": "./src"
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["src/**/*.test.ts"]
|
|
}
|