fix(ci): drop deprecated baseUrl, regenerate lockfile

Two CI failures on the 0.1.0 tag run:

1. tsc 5.6+ rejects `baseUrl: "."` (TS5101 deprecation, escalated to
   error). Removed — it was unused anyway (no `paths` map).

2. `@types/node` couldn't resolve under `npm ci` because the lockfile
   had drifted during the rename pass. Regenerated from scratch via
   `rm package-lock.json node_modules && npm install`.

Verified locally: `npm ci && npm run typecheck && npm test && npm run build` all clean.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
Etai Solomon 2026-04-27 10:22:24 +03:00
parent 55e6610a14
commit 4251e7a8c7

View file

@ -1,6 +1,5 @@
{
"compilerOptions": {
"baseUrl": ".",
"inlineSourceMap": true,
"inlineSources": true,
"module": "ESNext",