Get the dependencies of TypeScript module
npm install detective-typescript
const fs = require('fs');
const detective = require('detective-typescript');
const mySourceCode = fs.readFileSync('myfile.ts', 'utf8');
// Pass in a file's content or an AST
const dependencies = detective(mySourceCode);
skipTypeImports
(default:false
) Skips imports that only imports typesmixedImports
: (default:false
) Include CJS imports in dependency listskipAsyncImports
: (default:false
) Whether or not to omit async imports (import('foo'))jsx
: (default:false
) Enable parsing of JSX
MIT