detective-typescript
detective-typescript copied to clipboard
Get the dependencies of a TypeScript module
In some situations the detective fails to recognize ImportExpression (**import('...')**) that imports a tsx file. In that case the imports that are inside the file that got imported by that...
Currently, given an import such as `import { Foo, Bar } from './utilities'`, the returned dependencies will only give `['utilities']`, and no other details about what specifically was imported. For...
If your `tsconfig.json` has `"module": "ES2020"` or later (e.g you are outputting ESM and not CJS), TypeScript doesn't rewrite `import './foo'` to `import './foo.js'` in the transpiled output - instead...
Bumps the npm_and_yarn group with 1 update: [webpack](https://github.com/webpack/webpack). Updates `webpack` from 5.91.0 to 5.94.0 Release notes Sourced from webpack's releases. v5.94.0 Bug Fixes Added runtime condition for harmony reexport checked...