You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is there an existing issue that is already proposing this?
I have searched the existing issues
Is your feature request related to a problem? Please describe it
Currently the effective package size of @nest/cli is 34MB, mainly because the package requires a pinned version of typescript, which make npm/yarn unable to deduplicate typescript package. Can we loosen the version requirement for typescript?
What is the motivation / use case for changing the behavior?
Solving this can reduce network cost and build time in local development and CI. This package @nest/cli has about 2 million downloads per week, excluding typescript (4MB after gzip) can save 8TB / per week of transfer cost, which is about $600 USD of CDN hosting cost per week.
The text was updated successfully, but these errors were encountered:
I think that we should use ~ instead of ^ because, if I'm not wrong, sometimes typescript bumps the minor slice introducing breaking changes to the compiler API (which Nest's CLI uses under the hood)
Is there an existing issue that is already proposing this?
Is your feature request related to a problem? Please describe it
Currently the effective package size of
@nest/cli
is 34MB, mainly because the package requires a pinned version of typescript, which make npm/yarn unable to deduplicate typescript package. Can we loosen the version requirement for typescript?nest-cli/package.json
Line 57 in 95c7f7e
Describe the solution you'd like
Change typescript version to something like "^5.7.2".
Teachability, documentation, adoption, migration strategy
No response
What is the motivation / use case for changing the behavior?
Solving this can reduce network cost and build time in local development and CI. This package
@nest/cli
has about 2 million downloads per week, excluding typescript (4MB after gzip) can save 8TB / per week of transfer cost, which is about $600 USD of CDN hosting cost per week.The text was updated successfully, but these errors were encountered: