project.json•961 B
{
"name": "common-ai",
"$schema": "../../../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "packages/pieces/community/common-ai/src",
"projectType": "library",
"tags": [],
"targets": {
"build": {
"executor": "@nx/js:tsc",
"outputs": [
"{options.outputPath}"
],
"options": {
"outputPath": "dist/packages/pieces/community/common-ai",
"main": "packages/pieces/community/common-ai/src/index.ts",
"tsConfig": "packages/pieces/community/common-ai/tsconfig.lib.json",
"assets": [
"packages/pieces/community/common-ai/*.md"
]
},
"dependsOn": [
"prebuild",
"^build"
]
},
"prebuild": {
"dependsOn": [
"^build"
],
"executor": "nx:run-commands",
"options": {
"cwd": "packages/pieces/community/common-ai",
"command": "bun install --no-save --silent"
}
}
}
}