Open jsotrifork opened 8 years ago
@p-kudrin Would you have time to review and merge this?
We would like to use TypEcs, but we get errors for the compiler option outFile which has been introduced in TypeScript 1.8 and which we require. This PR would solve this problem.
outFile
Update: This is also required to support compiler option "module": "none", which is required, because the TypeScript compiler otherwise defaults to (target === 'ES6' ? 'ES6' : 'commonjs').
(target === 'ES6' ? 'ES6' : 'commonjs')
@p-kudrin Would you have time to review and merge this?
We would like to use TypEcs, but we get errors for the compiler option
outFile
which has been introduced in TypeScript 1.8 and which we require. This PR would solve this problem.Update: This is also required to support compiler option "module": "none", which is required, because the TypeScript compiler otherwise defaults to
(target === 'ES6' ? 'ES6' : 'commonjs')
.