-
Notifications
You must be signed in to change notification settings - Fork 12k
refactor(@angular/cli): update Intellij/Webstorm settings #16214
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
The following files should also be discussed:
cc @dgp1130 |
58907dd
to
899b34d
Compare
Thanks for bringing up your experience with WebStorm. I wasn't aware projects were structured differently between the two platforms. I tried checking out your commit and opening it in IntelliJ Ultimate, however, it doesn't load the project, likely because the Regarding the extra files you mentioned:
|
I was having the following warning every time I open the project:
WebStorm doesn't know the module type I updated the PR, could you please try again? |
899b34d
to
116bdd3
Compare
Tried again, and this configuration seems to work for IntelliJ Ultimate. Agreed that LGTM, pending update to your commit message as we're no longer removing the |
Intellij and Webstorm unfortunately don't the use the exact same configuration system. For example, Intellij treats every project as `JAVA_MODULE` but Webstorm doesn't recognize the `JAVA_MODULE`. Let's use `WEB_MODULE` as it's recognized by both IDEs. refs angular#16152
116bdd3
to
4421c7e
Compare
Yes! Just amended the commit message |
Thanks for catching this problem and sending the fix! |
It's my pleasure! |
This issue has been automatically locked due to inactivity. Read more about our automatic conversation locking policy. This action has been performed automatically by a bot. |
Intellij and Webstorm unfortunately don't the use the exact same
configuration system. For example, Intellij treats every project as
JAVA_MODULE
but Webstorm doesn't recognize theJAVA_MODULE
.Therefore, I think that the modules.xml and iml should be left
out from version control.
refs #16152