当前位置: 首页 > 工具软件 > cltjs-node > 使用案例 >

ts:使用ts-node执行ts文件

阚通
2023-12-01

背景

一般我们执行 js 文件,直接 node index.js,那么如何快速的执行 ts 呢?

ts-node

npm i ts-node -g
ts-node index.ts
{
  "scripts": {
    "start": "ts-node index.ts"
  },
  "dependencies": {
    "ts-node": "*"
  }
}

踩坑

1、Cannot use import statement outside a module
在package.json中添加配置"type":“modules”

2、TypeError [ERR_UNKNOWN_FILE_EXTENSION]: Unknown file extension “.ts”

ts-node ./myscripts.ts
改为
node --loader ts-node/esm ./my-script.ts

参考文档

https://github.com/TypeStrong/ts-node

 类似资料: