Gajus Kuizinas

Results 734 comments of Gajus Kuizinas

That actually makes sense. However, for `ignoreUnresolved` I would really like to support pattern. (or just disable it entirely) Currently, it includes a ton of unresolved paths that are not...

Already have node modules among ignored patterns: ```json { "aliases": { "@/*": [ "*" ] }, "entry": [ "server/index.ts", "src/**/*.page.tsx", "src/index.tsx", "src/routes.ts" ], "extensions": [ ".ts", ".tsx", ".js" ], "ignorePatterns":...

I cannot think of any way to create a repo for this... This project literally has thousands of files.

Happy to provide additional details if there is anything in particular you'd like to take a look.

Figured out what's going on after digging deeper into the source code. Here is the fix ```diff "ignoreUnimported": [ - "**/__tests__/**", + "src/__tests__/**", - "**/*.__wip__.*", + "src/*.__wip__.*", - "**/*.{test,tests}.{js,jsx,ts,tsx}", +...

Never mind. This solved the speed issue, but the underlying issue being discussed here remains (I accidentally excluded those files in the config). Debugging further.

With regards to the debug info that you've asked to provide: 1. In our project we import `import Lottie from 'lottie-react-web';` (`src/components/ComingSoonGhostState/PaymentsGhostState/PaymentsGhostState.tsx`) 2. That package imports lottie `var _lottie_api =...

For one, this is a multi-part problem. One unexpected discovery is that if `.d.ts` is not included in `extensions` configuration, then it is not covered by `.ts`. ```json "extensions": [...

Couldn't figure out. Ended up just excluding server side code and ignoring all dependencies that (as a result of excluding server-side code) got flagged as unused. Final config: ```json {...

I've used the latter approach to implement https://github.com/gajus/ava-dom As already mentioned by @chocolateboy, the biggest problem is that the error points to the location of `t.true` not the assertion. Is...