Sean Ryan
Sean Ryan
Use github actions to fully automate the release process. So when a trusted contributor merges to master, a release is automatically pushed to npm. This will speed up development, and...
@pzavolinsky FYI - a minimal update to keep the dependencies up to date
Currently we support a single tsconfig.json file as entry point, and will soon support extends of a base tsconfig file (#202) This issue is to look at what happens with...
https://david-dm.org/ is offline now (and has been in the past). So our dependendencies badge is broken alternatives = https://shields.io/category/dependencies
The current implementation of dynamic import handling, assumes that the import and the usage of the import are within the same statement. This issue is about cases where the import...
**Provide a glob/regex to specify which files to analyze** - needs to fit with existing options like `ignoreFiles` - see the README
Ignore unused exports from the entry point of library (package.json). This could be useful for source code of libraries. So if `package.json` says: ``` "main": "lib/app.js", ``` Then use `tsconfig.json`...
Consider refactoring towards 'FP' code, avoiding mutable state. The code may be simpler if we refactor to use a more 'Functional Programming' style, where we avoid mutating structures. (this is...
The number of options is growing, to the point where adding an optional config file sounds sensible. Notes: - config file is optional - cmd line options should override the...
readme: add list of features, like dynamic imports. Could be useful for folks deciding whether to use the tool, since now there are lot of features but not obviously visible...