Make tsc happier

This commit is contained in:
Michael Telatynski
2026-06-08 11:42:00 +01:00
parent 788c76d677
commit af74f511ed
9 changed files with 109 additions and 17 deletions
+21
View File
@@ -0,0 +1,21 @@
{
"$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/banner" },
"dependsOn": ["^build"]
},
"lint:types": {
"command": "tsc --noEmit",
"options": {
"cwd": "modules/banner"
},
"dependsOn": ["^build"]
}
}
}