Absorb element-modules/packages/element-web-module-api into monorepo

This commit is contained in:
Michael Telatynski
2026-04-13 11:10:11 +01:00
49 changed files with 3472 additions and 56 deletions
+22
View File
@@ -0,0 +1,22 @@
{
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"projectType": "library",
"root": "packages/module-api",
"targets": {
"build": {
"cache": true,
"executor": "nx:run-commands",
"inputs": ["src"],
"outputs": ["{projectRoot}/lib"],
"options": {
"commands": ["vite build", "api-extractor run"],
"parallel": false,
"cwd": "packages/module-api"
}
},
"lint:types": {
"command": "pnpm exec tsc --noEmit",
"options": { "cwd": "packages/module-api" }
}
}
}