TypeScript v6 has been out for a while, but the package precinct still depends on "typescript": "^5.9.3". This requires our project to install both TS v5 and TS v6 simultaneously.
It appears that some upstream projects, such as detective-typescript, have already updated their peer dependency range to support both TS v5 and v6.
I'm wondering if it would be possible to update the package precinct to use "typescript": "^5.9.3 || ^6.0.2" as a dependency, or set typescript as a peer dependency as previously discussed at #136.
TypeScript v6 has been out for a while, but the package
precinctstill depends on"typescript": "^5.9.3". This requires our project to install both TS v5 and TS v6 simultaneously.It appears that some upstream projects, such as
detective-typescript, have already updated their peer dependency range to support both TS v5 and v6.I'm wondering if it would be possible to update the package
precinctto use"typescript": "^5.9.3 || ^6.0.2"as a dependency, or settypescriptas a peer dependency as previously discussed at #136.