25 lines
724 B
JSON
25 lines
724 B
JSON
|
|
{
|
||
|
|
"name": "encounter-library",
|
||
|
|
"$schema": "../../node_modules/nx/schemas/project-schema.json",
|
||
|
|
"sourceRoot": "libs/encounter-library/src",
|
||
|
|
"projectType": "library",
|
||
|
|
"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"
|
||
|
|
}
|
||
|
|
},
|
||
|
|
"validate": {
|
||
|
|
"executor": "@nx/workspace:run-commands",
|
||
|
|
"options": {
|
||
|
|
"command": "ts-node libs/encounter-library/src/lib/validate-encounters.ts"
|
||
|
|
}
|
||
|
|
}
|
||
|
|
},
|
||
|
|
"tags": ["scope:content"]
|
||
|
|
}
|