基于 TypeScript 开发 NPM 模块

初始化 NPM 项目 mkdir project-name cd project-name npm init 添加开发基础包 添加 TypeScript yarn add typescript -D 添加 Jest 测试工具 yarn add jest ts-jest @types/jest -D 添加 @types/node yarn add @types/node -D 初始化 TypeScript 配置 ./node_modules/.bin/tsc --init 这...