nx/packages-legacy/devkit/project.json

37 lines
979 B
JSON

{
"name": "devkit-legacy",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "packages-legacy/devkit",
"projectType": "library",
"targets": {
"build": {
"executor": "@nx/js:tsc",
"dependsOn": ["^build"],
"options": {
"main": "packages-legacy/devkit/index.ts",
"tsConfig": "packages-legacy/devkit/tsconfig.json",
"outputPath": "build/packages/devkit-legacy",
"updateBuildableProjectDepsInPackageJson": false,
"assets": [
{
"input": "packages-legacy/devkit",
"glob": "**/*.json",
"ignore": ["**/tsconfig*.json", "project.json"],
"output": "/"
},
{
"input": "packages-legacy/devkit",
"glob": "**/*.d.ts",
"output": "/"
},
{
"input": "",
"glob": "LICENSE",
"output": "/"
}
]
}
}
}
}