I'd like to disable Typescript's transpiling, keeping all the code as it is, because I'm using Babel on my project. Is there a way to do it?
Asked
Active
Viewed 285 times
4
-
The way to disable TypeScript's transpiling is to not use TypeScript. – Heretic Monkey Feb 09 '18 at 02:48
-
2I'd like to keep the Typescript's compiling, but I don't want to get my code refactored to a lower version of ECMASCRIPT. I'll use Babel to that. – Isaac Ferreira Feb 09 '18 at 02:50
-
So... your question doesn't make a lot of sense then. TypeScript compiles to the version of ECMAScript you tell it to. – Heretic Monkey Feb 09 '18 at 14:11
-
1@mike-mccaughan, Typescript is a static type checker! To refactor the code to a target version of ECMASCRIPT is an additional feature, and I'd like to disable it. – Isaac Ferreira Feb 11 '18 at 07:20