feat(MQ-001): initialize pnpm workspace with strict TS lint and vitest

This commit is contained in:
2026-03-06 08:11:55 -06:00
parent 9bd1450f90
commit f2435471af
12 changed files with 1984 additions and 0 deletions

18
package.json Normal file
View File

@@ -0,0 +1,18 @@
{
"name": "mosaic-queue-workspace",
"private": true,
"packageManager": "pnpm@10.6.2",
"scripts": {
"lint": "pnpm -r --if-present lint",
"build": "pnpm -r --if-present build",
"test": "pnpm -r --if-present test"
},
"devDependencies": {
"@types/node": "^22.13.10",
"@typescript-eslint/eslint-plugin": "^8.27.0",
"@typescript-eslint/parser": "^8.27.0",
"eslint": "^9.22.0",
"typescript": "^5.8.2",
"vitest": "^3.0.8"
}
}