```javascript { "compilerOptions": { "allowJs": true, "baseUrl": "./src" // ... } } ``` having e.g. `src/helpers/time.js` and in `src/modules/index.ts`: ```typescript import 'helpers/time'; ``` it's not transformed to `require('../helpers/time');` but left out as `require('helpers/time')`... which breaks execution