运行原理:
TypeScript -> JavaScript
1、VSCode先安装插件code runner
2、安装 typescript
npm install -g typescript
3、运行ts文件
(1)方法一:通用方法
配置settings.json
// 指定解释器 "code-runner.executorMap": { "typescript": "tsc $fileName && node $fileNameWithoutExt.js" },
下表是 Code Runner 支持的自定义参数:
(2)方法二:ts-node
npm install -g ts-node
测试
const hello : string = "hello world" console.log(hello);
运行结果
[Running] ts-node "/Desktop/demo.ts" hello world [Done] exited with code=0 in 0.942 seconds