Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
807 views
in Technique[技术] by (71.8m points)

node.js - How to get support of generators in typescript without setting target to ES6?

Got a situation here. I use nodejs with --harmony flag to get support of generators. Next i'm trying to switch my project to TypeScript and get a problem: in "target":"ES6" mode it transpiles import commands as is (instead of require).

And node with --harmony flag doesn't support that:

import * as fs from 'fs';
^^^^^^
SyntaxError: Unexpected reserved word

Transpiling option "module":"commonjs isn't allowed with "target":"ES6".

Have anyone solved this problem without using any external require/import utilities?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

These settings have worked for me:

tsconfig.json

{
  "compilerOptions": {
    "target":"ES6",
    "moduleResolution": "classic",
  }
}
  • ES6 support for generators
  • No import stuff transpiling due to "moduleResolution": "classic"

And so the problem's gone!


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...