Files
fog/libs/encounter-library/project.json

27 lines
741 B
JSON
Raw Normal View History

{
"name": "encounter-library",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "libs/encounter-library/src",
"projectType": "library",
"tags": ["scope:shared", "type:lib"],
"targets": {
"build": {
"executor": "@nx/js:tsc",
"outputs": ["{options.outputPath}"],
"options": {
"outputPath": "dist/libs/encounter-library",
"main": "libs/encounter-library/src/index.ts",
"tsConfig": "libs/encounter-library/tsconfig.lib.json",
"assets": [
"libs/encounter-library/*.md",
{
"input": "libs/encounter-library/src/lib",
"output": "src/lib",
"glob": "*.json"
}
]
}
}
}
}