fix(node): Root imports (#33732)

This commit is contained in:
Ben White
2025-06-16 17:48:39 +02:00
committed by GitHub
parent 51615c0ad8
commit 45fa2f2dcc
44 changed files with 402 additions and 238 deletions

View File

@@ -14,7 +14,7 @@
"prestart:devNoWatch": "pnpm build:cyclotron",
"build": "pnpm clean && pnpm typescript:compile && pnpm typescript:compile-cleanup",
"clean": "rm -rf dist/*",
"typescript:compile": "tsc -b",
"typescript:compile": "tsc -b && tsc-alias",
"typescript:compile-cleanup": "[ -d dist/src ] && mv dist/src/* dist/ || true",
"typescript:check": "tsc --noEmit -p .",
"lint": "eslint .",
@@ -152,7 +152,8 @@
"pino-pretty": "^9.1.0",
"prettier": "^2.8.8",
"supertest": "^7.0.0",
"ts-node": "^10.9.1"
"ts-node": "^10.9.1",
"tsc-alias": "^1.8.16"
},
"cyclotron": {
"//This is a short term workaround to ensure that cyclotron changes trigger a rebuild": true,