feat: fix types and add type checking plus lazybundle on launch andddd dev flag

This commit is contained in:
Brooklyn Nicholson 2026-04-11 14:42:28 -05:00
parent 5e5e65f6d5
commit 32302c37dd
34 changed files with 1807 additions and 977 deletions

View file

@ -53,5 +53,5 @@ export function order(a: string, b: string): -1 | 0 | 1 {
return Bun.semver.order(a, b)
}
return getNpmSemver().compare(a, b, { loose: true })
return getNpmSemver().compare(a, b, { loose: true }) as -1 | 0 | 1
}