Tspec TypeScript 타입과 JSDoc 기반으로 OpenApi를 자동으로 생성하게 해주는 라이브러리 https://ts-spec.github.io/tspec/ Tspec | Tspec Tspec Type-driven API Documentation Auto-generating REST API document based on TypeScript types ts-spec.github.io Tspec 사용 방법 1. 의존성 주입 npm install tspec yarn install tspec 2. 타입 지정하기 주의사항 never 등 특정 타입들 인식 못하는 버그 있음 알리아스로 import 하면 타입 인식 못하고 string으로 나오는 버그 있음 ex) type.ts /** 회원 종류 KEY */..