warning "tsdx > [email protected]" has unmet peer dependency "[email protected]".
warning "tsdx > [email protected]" has incorrect peer dependency "[email protected]".
also please update @typescript-eslint/[email protected] to 2.0.0
Can you submit a PR?
@jaredpalmer
Which node version do you use to build? I will add .nvmrc to the project.
I'm running tests and getting an error:

can't update stuff until you fix tests
@skvale have you tried to run tests?
It looks like the tests are passing from your screenshot
There is a noisy test for an invalid build: https://github.com/palmerhq/tsdx/blob/master/test/fixtures/build-invalid/src/index.ts
re:
also please update @typescript-eslint/[email protected] to 2.0.0
eslint-config-react-app just bumped their versions of typescript-eslint deps: https://github.com/facebook/create-react-app/pull/7540/files
tsdx could bump eslint-config-react-app and @typescript-eslint/eslint-plugin now
it is better to ditch eslint-config-react-app - it messes up linting projects without create-react-app
As was written previously above (https://github.com/formium/tsdx/issues/182#issuecomment-526948153), it's definitely not just for React projects -- can view the rules and see for yourself.
I'm not sure what "messes up linting projects without create-react-app" refers to. I'm open to changing to a different default ESLint config (I personally use Standard), however that's a separate story -- please propose an RFC if interested.
It would likely be a very breaking change and folks who use lint configs tend to not want to make stylistic choices themselves and so may be adverse to that. TSDX also has overlap with CRA / CRL users (and has a good bit of inspiration from CRA), so similar config is probably more consistent for those folks.
@agilgur5 the issue for me is mostly out of date versions of dependencies in CRA. I use carefully managed list of eslint plugins myself, and would love to have smaller dependency tree, and less clutter in npm i logs about missing/outdated dependencies.
Ok, that's different from "messing up linting"; that would mean it works but just is outdated. #810 has this issue too. I suspect CRA has somewhat of the same issue as TSDX where a major bump in any sub-package causes a major in CRA so as a result you end up being slow to update dependencies as you batch them into majors.
In any case, I don't particularly want to maintain an ESLint config myself for reasons I've written in https://github.com/formium/tsdx/pull/890#issuecomment-703167625 . For ecosystem consistency also would prefer using an existing, well-used config. If you've got suggestions, feel free to make an RFC.
Most helpful comment
it is better to ditch eslint-config-react-app - it messes up linting projects without create-react-app