I use Typescript command (tsc) to create a single Javascript file containing all plateform classes.
tsc "./Main.ts" -out "./script/myProject_debug.js" --declarations
Then, I want to obfuscate this file with Google Closure (compiler.jar) like this :
java -jar ./compiler/compiler.jar --compilation_level ADVANCED_OPTIMIZATIONS --js "./script/myProject_debug.js" > "./script/myProject.js".
But when I execute the resulting obfuscated/optimized code, I got this following error : Uncaught TypeError: Cannot read property 'prototype' of undefined
Which matches the following non-obfuscated JS code (generated by tsc command) :
var __extends = this.__extends || function (d, b) {
function __() { this.constructor = d; }
__.prototype = b.prototype;
d.prototype = new __();
}
This part is used to translate the "extends" Typescript keyword and the equivalent of b is undefined.
Is anyone got similar error or/and get a solution to be able to obfuscate with Google Closure with a Typescript compiled file?
I tried with uglifyjs command and the output file works perfectly, but I want total obfuscation (classes, args, variables, methods, etc). Also, the extra optimization provided by Google Closure would be welcome.
Thanks you!