Justinas Delinda

Results 96 comments of Justinas Delinda

That is very interesting point `noStringTrimLeftRight` versus `noTrimLeftRight`, because yeah currently `noTrimLeftRight` will match on any value which calls `trimLeft` not just strings. [useFlatMap](https://biomejs.dev/linter/rules/use-flat-map) would not be good example because...

@vohoanglong0107 As of [typescript 5.0](https://www.typescriptlang.org/docs/handbook/release-notes/typescript-5-0.html#allowimportingtsextensions) you can use `.ts` extensions, this rule would not have much use otherwise. I don't see case where user would want to enable `.js` extensions,...

@Conaclos what about windows tests? Right now they fail, because on windows os paths us different slash. Should I replace pathBuf with vector or something like that?

I replaced path_buf with string concatenation, windows test now pass.

I think that we can pick extension, based on what other import extensions exist in the file or file extension itself and in most cases it will be good enough....

I just realized that many projects use pattern such as `import "~/foo"` `@/foo` which resolve to `src/`. Without tsconfig access we have no way to know. I wonder if we...

I thought about it briefly, but not much before implementation, however I see few reasons: Not quite sure overloading it is the best idea, even if implementation is similar explaining...

I am using [ParaglideJS i18n](https://inlang.com/m/gerre34r/library-inlang-paraglideJs) plugin and it uses `data:application/javascript` to dynamically import modules from CDN, photo from their source code. Using it with wxt fails. `Error: Cannot find module...

I am using their vite plugin. I searched some more and found it is [jiti issue](https://github.com/unjs/jiti/issues/207) https://github.com/opral/monorepo/issues/2133. Anyway there is nothing todo on your end. For now I will just...

Resolving tsconfig paths also impacts [useImportExtensions](https://github.com/biomejs/biome/pull/2725) from working properly. Oxc requires passing tsconfig path explicitely, that could be option in short term, but breaks once you deal with monorepos and...