Skip to content

Does autocomplete/intellisense only work with TS? #531

Discussion options

You must be logged in to vote

See documentation for adding TS intellisense in WebStorm:

Although I don't have this IDE to try, creating a jsconfig.json with "allowJs": true set should be enough. Example jsconfig.json:

{
  "include": [
    "./src/**/*"
  ],
  "compilerOptions": {
    "allowJs": true
  }
}

Make sure to restart the service after these changes:

Click the TypeScript widget on the Status bar and select Restart TypeScript Service from the list.

Replies: 9 comments 4 replies

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Answer selected by posva
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
2 replies
@Meller008
Comment options

@zjssos
Comment options

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
2 replies
@taisha
Comment options

@m4heshd
Comment options

Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet