Closed TylorS closed 1 year ago
Latest commit: 8235ab2f0191b2e2234e788b3d3c81a906029379
The changes in this PR will be included in the next version bump.
Not sure what this means? Click here to learn what changesets are.
Click here if you're a maintainer who wants to add another changeset to this PR
@TylorS thanks!
Summary
extends
through the use oftsconfck
.ts.CompilerOptions
.Details
I'm working on creating a monorepo based on
@effect/platform
, but with 19 different packages, and I'm finding that the repetition is quite a lot to write and maintain. Being able to utilizeextends
would be really helpful to minimizing duplication.Additionally, things like
"moduleResolution": "node"
leads to runtime errors with the current compilerOptions provided tots-morph
since they are not converted to the corresponding enums defined by TS. Becomes a lot more noticeable when you're reading from tsconfigs which likely define more options.