-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Migrate off tsdx #126
Comments
Wonder if this starter could offer us any tips: https://github.com/egoist/ts-lib-starter |
Or, also consider moving to one of:
Some all-in-one solutions like scaffoldres may offer some inspiration as well (although I guess moving completely to them may have problems similar to
|
Maybe just use |
Maybe another example, this one using |
Another reason to switch: During the switch from Yarn to pnpm (#379 ), we also had to add some additional weird configuration:
- name: Check types
run: |
pnpm tsc --project __tests__/tsconfig.json
pnpm tsc --project bin/tsconfig.json
pnpm tsc --project docker/tsconfig.json
pnpm tsc --project tsconfig.config.json |
My reason for switching: Different solutions without switching what I tried were to use
However, this approach resulted in a semantic error. I also explored other workarounds, such as using I have described these different solutions in detail in this comment |
Another option would be to just publish TypeScript, and use |
tsdx
was a nice idea, but it's no longer maintained.Time to come up with our own solution for this, maybe using:
esbuild
tsm
tsx
The text was updated successfully, but these errors were encountered: