Skip to content Skip to sidebar Skip to footer

Nodeclipse Not Recognizing Generator Functions

First off, I am starting Node with the --harmony flag. I set this flag in Eclipse 'Preferences > Nodeclipse > node options' The problems show in the .js files themselves. Fo

Solution 1:

a) get Nodeclipse 1.1 http://www.nodeclipse.org/history

or

b) do manually:

remove JSDT nature in .project

<nature>org.eclipse.wst.jsdt.core.jsNature</nature>

in .jshintrc enable ES6

"esnext" : true, // Allow ES.next (ECMAScript 6) specific features such as `const`and`let`.

Post a Comment for "Nodeclipse Not Recognizing Generator Functions"