Henrik Hall

- Total activity 20
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 1
- Subscriptions 7
-
Created Webstorm imports modules linked with npm link by local path instead of module name
This is the same issue as https://youtrack.jetbrains.com/issue/WEB-51752, but the author abandoned it and it's still valid for me on Webstorm 2022.2.3 more than a year after the previous issue, so ... -
Created After upgrading to WebStorm 2022.3, JS or TS code is frequently not analyzed
Using Webstorm 2022.3, I started getting severe issues with the IDE not picking up code errors correctly, and also not understand when issues are fixed. So for example, the ID will redline some pie... -
Created Display the exports/the API of a module
Is there a built-in way in Webstorm to e.g. click on a module (=file) and get a view of the exported interface from that module? For example if `foo.ts` has exported functions `foo()`, `bar()` and ... -
Edited Migrating JS to TS
Hi, I'm migrating several projects from plain pre Node 14 JS to TypeScript, and I find myself doing the exact same repetitive tasks time after time after time: 1. Rename file from foo.js to foo.ts ... -
Created Automatically replacing quotes with backticks
On my previous Ubuntu computer, whenever I had a string like 'foobar', and replaced one of the quotes with a backtick, `, the other one would automatically follow and be replaced. On my new Mac M1 ... -
Edited Long expanded TypeScript type aliases clutter IDE
If you have typescript types with a lot of generic parameters, sub-types etc, sometimes the added type annotation in the IDE window is very annoying. For example I was working with an API using a `... -
Edited Can WebStorm be configured to warn when forgetting an await statement in a call to an async function?
It happens sometimes that you call an async function but forget the await statement. Such code usually does not render any warnings; instead, the following logic may simply fail. Silly example: a...