复制于 https://github.com/domchen/UglifyTS
在具备tsconfig.json的项目目录中执行
node /path/to/src/Program.js
即可以在当前目录中生成generated目录,其中有混淆之后的ts代码
UglifyTS is a source code obfuscation tool for TypeScript. It accepts TypeScript source files, and generates the functionally equivalent source files which are much harder to understand or reverse-engineer. This tool is usually used for source code protection.
First make sure you have installed the latest version of node.js (You may need to restart your computer after this step).
For use as a command line app:
npm install -g uglifyts
For programmatic use:
npm install uglifyts
uglifyts [outDir] [options]