third commit
Some checks failed
CI / main (push) Failing after 11s

This commit is contained in:
2026-04-07 17:54:00 +02:00
parent 23fb1ce7ad
commit 63558973ff
51 changed files with 905 additions and 0 deletions

19
shared/project.json Normal file
View File

@@ -0,0 +1,19 @@
{
"name": "shared",
"$schema": "../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "shared/src",
"projectType": "library",
"tags": [],
"targets": {
"build": {
"executor": "@nx/js:tsc",
"outputs": ["{options.outputPath}"],
"options": {
"outputPath": "dist/shared",
"main": "shared/src/index.ts",
"tsConfig": "shared/tsconfig.lib.json",
"assets": ["shared/*.md"]
}
}
}
}