Using typescript@next (1.8.0-dev.20151109) and the following compilerOptions: ``` json "compilerOptions": { "target": "ES6", "module": "commonjs" } ``` Any code using named import as a shorthand property will result in invalid code being generated. Example: ``` typescript import {foo} from './foo'; const test = { foo }; ``` generates ``` javascript var foo_1 = require('./foo'); const test = { foo }; ``` ``` ReferenceError: foo is not defined ```