Google TypeScript Style
Google의 TypeScript 스타일 가이드 도구 → GTS
GTS로 프로젝트 시작하기
GTS 명령 목록
개별 파일 명령
Last updated
Google의 TypeScript 스타일 가이드 도구 → GTS
Last updated
npx gts init.
├── src/
│ └── index.ts # 엔트리 파일
├── .eslintignore # ESLint 제외 항목
├── .eslintrc.json # ESLint 구성
├── .prettierrc.js # Prettier 구성
├── tsconfig.json # TypeScript 구성
├── package.json
└── package-lock.jsonnpx gts lint index.ts
npx gts lint one.ts two.ts three.ts
npx gts lint *.ts