**TypeScript Version:** 3.5.2 **Code** Auto importing `CellData` in https://github.com/xtermjs/xterm.js/blob/73521390d29c8a111058a6a7d08edd827ba498b7/src/browser/ColorManager.ts will import from `../../out/common` instead of `common/` <img width="1065" alt="Screen Shot 2019-06-27 at 11 23 24 AM" src="https://user-images.githubusercontent.com/2193314/60290634-ffde7f00-98cd-11e9-984f-729ea8f8cae0.png"> See tsconfigs: - `ColorManager` lives in https://github.com/xtermjs/xterm.js/blob/73521390d29c8a111058a6a7d08edd827ba498b7/src/browser/tsconfig.json - `CellData` lives in https://github.com/xtermjs/xterm.js/blob/73521390d29c8a111058a6a7d08edd827ba498b7/src/common/tsconfig.json **Expected behavior:** ```ts import { CellData } from 'common/buffer/CellData'; ``` **Actual behavior:** ```ts import { CellData } from '../../out/common/buffer/CellData'; ```