first commit

This commit is contained in:
Hussar
2026-04-12 16:43:45 +01:00
commit 9213df4828
79 changed files with 2204 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
{
"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"]
}