chore: stabilize monorepo build and typescript setup

This commit is contained in:
2026-07-20 21:54:36 +02:00
parent 5fd48d1971
commit 4855bb882c
30 changed files with 1536 additions and 405 deletions
+2 -1
View File
@@ -7,6 +7,7 @@
"build": "tsc -p tsconfig.json"
},
"devDependencies": {
"typescript": "^7.0.2"
"@types/node": "^26.1.1",
"typescript": "^5.7.3"
}
}
+8 -3
View File
@@ -8,7 +8,12 @@
"rootDir": "src",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true
"skipLibCheck": true,
"types": [
"node"
]
},
"include": ["src"]
}
"include": [
"src"
]
}