安裝TypeScript
安裝
$ npm install -g typescript
執行
tsc
TypeScript Compiler
$ tsc hello.ts
Node.js
$ npm install -g ts-node typescript
修改
package.json
"scripts":{ "ts-node": "ts-node" },
$ npm run ts-node