twenty/packages/twenty-server/project.json

22 lines
608 B
JSON
Raw Normal View History

{
"projectType": "application",
"targets": {
"build:packageJson": {
"executor": "@nx/js:tsc",
"dependsOn": [
"prebuild"
],
"options": {
"main": "packages/twenty-server/dist/src/main.js",
"tsConfig": "packages/twenty-server/tsconfig.json",
"outputPath": "packages/twenty-server/dist",
"updateBuildableProjectDepsInPackageJson": true
}
},
"test:debug": {
"dependsOn": [
"^build"
]
}
}
}