https://github.com/samchon/typescript-json


TSON.stringify<T>(input);


TypeScript 에서 딱 위 한 줄 코드만 입력하면, JSON string 변환이 두 배 빨라짐.


TypeScript Compiler AST 를 공부하면서 만들었는데, JSON string 변환이 두 배 빨라지는 원리는 typescript-json 이 컴파일러 수준에서 위 타입 T 에 대하여 분석, 해당 타입 T 만을 위한 전용 JSON string 변환기를 만들어주기 때문임 ㅇㅇ.