This repository has been archived on 2025-02-06. You can view files and clone it, but cannot push or open issues or pull requests.
insiemesalute-3p-nx20-tspaths/tools/nest/project.json

42 lines
1012 B
JSON

{
"name": "nest",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "tools/nest/src",
"projectType": "library",
"tags": [],
"targets": {
"build": {
"executor": "@nx/js:tsc",
"outputs": ["{options.outputPath}"],
"options": {
"outputPath": "dist/tools/nest",
"main": "tools/nest/src/index.ts",
"tsConfig": "tools/nest/tsconfig.lib.json",
"assets": [
"tools/nest/*.md",
{
"input": "./tools/nest/src",
"glob": "**/!(*.ts)",
"output": "./src"
},
{
"input": "./tools/nest/src",
"glob": "**/*.d.ts",
"output": "./src"
},
{
"input": "./tools/nest",
"glob": "generators.json",
"output": "."
},
{
"input": "./tools/nest",
"glob": "executors.json",
"output": "."
}
]
}
}
}
}