Edgaras Karka
Edgaras Karka

Reputation: 7852

Eclipse angular2 plugin file import suggestions

I am looking possibility for file import suggestion in eclipse Angular 2 plugin.

enter image description here

Upvotes: 0

Views: 284

Answers (1)

Angelo
Angelo

Reputation: 2125

This problem comes from typeScript and not from Angular2 Eclipse. The completion for files, directories will be implemented very well for TypeScript 2.1 (or perhaps 2.2).

If you want to play with that:

  • install in your project (or other folder) the TypeScript 2.2 with

npm install typescript@next

  • configure TypeScript IDE to use this TypeScript bundle with project properties

TypeScript / Runtime

See Configure TypeScript for more information.

After that completion for files, directories should work:

TypeScript completion for from

Upvotes: 1

Related Questions