一般我们执行 js 文件,直接 node index.js
,那么如何快速的执行 ts 呢?
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