fix: add typescript as direct devDependency (fixes tsc not found)

PR #8 revealed that typescript is also missing as a direct dependency.
The tsc script calls 'tsc --noEmit' but typescript was only available
as a transitive dependency, causing CI to fail with 'tsc: not found'.

Co-Authored-By: Paperclip <noreply@paperclip.ing>
This commit is contained in:
2026-05-04 19:53:42 +00:00
committed by Gandalf the Greybeard [agent]
parent 8600cedb64
commit b204491808
2 changed files with 4 additions and 0 deletions
+1
View File
@@ -34,6 +34,7 @@
"react": "^18.3.1", "react": "^18.3.1",
"react-dom": "^18.3.1", "react-dom": "^18.3.1",
"react-router-dom": "^5.3.0", "react-router-dom": "^5.3.0",
"typescript": "^5.6.2",
"vitest": "^3.0.5" "vitest": "^3.0.5"
} }
} }
+3
View File
@@ -35,6 +35,9 @@ importers:
react-router-dom: react-router-dom:
specifier: ^5.3.0 specifier: ^5.3.0
version: 5.3.4(react@18.3.1) version: 5.3.4(react@18.3.1)
typescript:
specifier: ^5.6.2
version: 5.6.2
vitest: vitest:
specifier: ^3.0.5 specifier: ^3.0.5
version: 3.2.4(@types/debug@4.1.13)(@types/node@20.19.39)(jsdom@24.1.3)(msw@2.4.9(typescript@5.6.2))(terser@5.46.2)(yaml@2.8.4) version: 3.2.4(@types/debug@4.1.13)(@types/node@20.19.39)(jsdom@24.1.3)(msw@2.4.9(typescript@5.6.2))(terser@5.46.2)(yaml@2.8.4)