mirror of
https://github.com/vector-im/element-web.git
synced 2026-07-03 13:58:59 +00:00
26 lines
725 B
JSON
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"]
|
|
}
|
|
}
|
|
}
|