Files
element-web/modules/widget-lifecycle/project.json
T
Michael Telatynski af74f511ed Make tsc happier
2026-06-08 11:42:00 +01:00

26 lines
725 B
JSON

{
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"projectType": "library",
"targets": {
"build": {
"cache": true,
"command": "vite build",
"inputs": ["src"],
"outputs": ["{projectRoot}/lib"],
"options": { "cwd": "modules/widget-lifecycle" },
"dependsOn": ["^build"]
},
"test:unit": {
"command": "vitest run",
"options": { "cwd": "modules/widget-lifecycle" }
},
"lint:types": {
"command": "tsc --noEmit",
"options": {
"cwd": "modules/widget-lifecycle"
},
"dependsOn": ["^build"]
}
}
}