Use a different build for prod and dev

This commit is contained in:
Fang-Pen Lin
2025-11-17 11:52:29 -08:00
parent 7da6929c0c
commit 2ac739a6aa
8 changed files with 93 additions and 73 deletions

View File

@@ -1,6 +1,8 @@
{
"watch": ["src"],
"watch": [
"src"
],
"ext": ".ts,.js",
"ignore": [],
"exec": "tsx ./src/main.ts | pino-pretty --colorize --colorizeObjects --singleLine"
}
"exec": "tsx ./src/main.ts --config tsconfig.dev.json | pino-pretty --colorize --colorizeObjects --singleLine"
}