You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"ts-node": {
// these options are overrides used only by ts-node// same as our --compilerOptions flag and our TS_NODE_COMPILER_OPTIONS environment variable"compilerOptions": {
"module": "commonjs"
}
},
The text was updated successfully, but these errors were encountered:
Cansiny0320
changed the title
使用 ts-node 时 tsconfig 中的 module 值设置过高(ES2015以上) 会报错
使用 ts-node 时报错 Cannot use import statement outside a module
Dec 31, 2021
原因:tsconfig 中的 module 值设置过高(ES2015以上) 应该是 ts-node 的 bug (ts-node 版本 v10.4.0)
解决方法:TypeStrong/ts-node#922 (comment)
对于 ts-node 单独设置
The text was updated successfully, but these errors were encountered: