Files
ThreadNet-Web/packages/module-api/project.json
T
Michael TelatynskiandGitHub d4f72dfa69 Start consolidating shared types in the monorepo (#34062)
* Start consolidating shared types in the monorepo

* Iterate

* Simplify api-extractor

* Iterate

* Fix lockfile
2026-07-06 13:49:32 +00:00

25 lines
726 B
JSON

{
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"projectType": "library",
"root": "packages/module-api",
"targets": {
"build": {
"cache": true,
"inputs": ["src"],
"outputs": ["{projectRoot}/lib"],
"command": "vite build",
"options": { "cwd": "packages/module-api" }
},
"start": {
"command": "vite build --watch",
"options": { "cwd": "packages/module-api" },
"dependsOn": ["^start"],
"continuous": true
},
"lint:types": {
"command": "pnpm exec tsc --noEmit",
"options": { "cwd": "packages/module-api" }
}
}
}