As previously seen on #9034, I would like to use a separate, TypeScript-based "commons" library in two other TypeScript projects. The problem is that aliased imports are disabled for no documented reason. A workaround is possible with react-app-rewired through react-app-rewire-alias (since version 0.1.6 also fully compatible with my problem), but this should be natively supported in CRA.
The problem this would bring is that overrides in eslint-loader does not support absolute/external paths, so either a version that does support this should be used, or it should be ignored (possibly accompanied by a warning that they are not linted).
As previously seen on #9034, I would like to use a separate, TypeScript-based "commons" library in two other TypeScript projects. The problem is that aliased imports are disabled for no documented reason. A workaround is possible with
react-app-rewiredthroughreact-app-rewire-alias(since version 0.1.6 also fully compatible with my problem), but this should be natively supported in CRA.The problem this would bring is that
overrides ineslint-loaderdoes not support absolute/external paths, so either a version that does support this should be used, or it should be ignored (possibly accompanied by a warning that they are not linted).