How To Integrate Electron To Webstorm Having No "module Is Not Installed" Hint?
Solution 1:
You'll need to install TypeScript type definitions for Electron, the first section of this blog post explains how to setup code completion for ReactJS in WebStorm:
To enhance code completion with typed parameter information we recommend that you add a TypeScript definition file for
react.d.ts
as a JavaScript library for the project.Go to Preferences | Languages & Frameworks | JavaScript | Libraries, click Download…, select TypeScript community stubs, search for react and click Download. The file will be added as JavaScript library for WebStorm to use in coding assistance.
You should be able to install the Electron type definitions the same way, keep in mind that the typings for Electron are named github-electron
(as opposed to just electron
).
Post a Comment for "How To Integrate Electron To Webstorm Having No "module Is Not Installed" Hint?"