🚨(y-provider) adapt build command to tsc-alias upgrade

Recent upgrade of tsc-alias introduced a breaking
change in the build command, which now requires the
`--project` flag to specify the path to the
tsconfig file.
This commit is contained in:
Anthony LC
2026-07-21 14:57:28 +02:00
parent ba0a80cdef
commit c9bacaeb5e
+1 -1
View File
@@ -6,7 +6,7 @@
"license": "MIT",
"type": "module",
"scripts": {
"build": "tsc -p tsconfig.build.json && tsc-alias",
"build": "tsc -p tsconfig.build.json && tsc-alias -p tsconfig.build.json",
"dev": "cross-env COLLABORATION_LOGGING=true && nodemon --config nodemon.json",
"start": "node ./dist/start-server.js",
"lint": "eslint",