Anna Bocharova
Anna Bocharova
breaks for `express` as well, same error, @Lordfirespeed @mcollina @andrewbranch @nicolas377 , please revert
not planned, but cool
Perhaps we're gonna do it earlier. I noticed that the industry is already getting rid of Node 18
Could `bun` operate `tsc` internally and build a declaration file of the bundle like `tsup` does? https://tsup.egoist.dev/#generate-declaration-file tsupbun ```ts export default defineConfig({ entry: ["src/index.ts"], format: ["esm", "cjs"], splitting: false, sourcemap:...
> for now tsc --emitDeclarationOnly --isolatedDeclarations is the best choice. can it bundle declarations by an entrypoint (make a single DTS file from many TS, similar to JS bundle), @paperdave...
I also found another workaround while this issue is not resolved. Overriding the `import` plugin with `import-x` in `package.json`: ``` "eslint-plugin-import": "https://registry.npmjs.org/eslint-plugin-import-x/-/eslint-plugin-import-x-0.5.2.tgz", ``` Though, I admit, it's hacky.
@privatenumber , in Node 24.2.0 (latest) the latest `tsx` (4.20.1 and 4.20.2) has the issue with CJS (doesn't have it for ESM): ``` node:internal/assert:17 throw new ERR_INTERNAL_ASSERTION(message); ^ Error [ERR_INTERNAL_ASSERTION]:...
Seems to be fixed in 4.20.3, thank you!
The CI fails to install Node 16 🤷🏽♀️
I believe enabling `corepack` should go after installing Node in CI This should be fixed by: - https://github.com/import-js/eslint-import-resolver-typescript/pull/290