📅  最后修改于: 2022-03-11 14:49:54.282000             🧑  作者: Mango
npm install -g typescript
tsc --init # creates a tsconfig.json file
tsc # transpile every file in the current directory
tsc index.ts # transpile a specific file
tsc --watch # transpile on change in current directory (watch changes)