Eugene Bashmakov

Results 2 comments of Eugene Bashmakov

``` "compilerOptions": { "baseUrl": ".", "paths": { "*": [ "node_modules/*", "src/*" ] }, ... } ``` This is working for me.

Probably off-topic, but what I noticed is if you use this construction in a loop: ```tsx const AsyncIcon = loadable( // this import resolves only for the 1st icon in...