Since version 0.8.2, all `d.ts` files are now generated with full absolute path _inside_ build directory (the one set on webpack configuration). For example, considering I have `outDir` set to `ts-build` on `tsconfig.json`, I have: ``` . ├── Users │ └── mrblackus │ └── Projects │ └── js │ └── fooProject │ └── build │ └── ts-build │ └── foo.d.ts ├── foo.js └── foo.js.map ``` Instead of ``` . ├── foo.js ├── foo.js.map └── ts-build └── foo.d.ts ``` This issue is initially reported by @Bartzy and myself on https://github.com/TypeStrong/ts-loader/pull/175.