dets fails to resolve types when utilizing baseUrl parameter from tsconfig.json.
Working example (index.ts):
export * from './dependency-injection/injectable';
Broken example (index.ts, with baseUrl set to ./src/ in tsconfig.json):
export * from 'dependency-injection/injectable';
dets fails to resolve types when utilizing
baseUrlparameter from tsconfig.json.Working example (index.ts):
Broken example (index.ts, with
baseUrlset to./src/in tsconfig.json):