Files
elettrotek/shared/project.json
mauro-defilippo 63558973ff
Some checks failed
CI / main (push) Failing after 11s
third commit
2026-04-07 17:54:00 +02:00

20 lines
459 B
JSON

{
"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"]
}
}
}
}