JSX file type icons missing
@coRz have you checked out #859? Can you let me know if you use any special extension? It should be working.
"files.associations": {
"*.jsx": "javascriptreact"
},
This has solved the issue, I thought it was configured to have this as default.
jsx is managed via language id. The fact that you're not seeing this association as default is indicating that some of your extensions has changed this association. Doing what you did forces the association and doesn't care about language id settings.
Most helpful comment
"files.associations": { "*.jsx": "javascriptreact" },This has solved the issue, I thought it was configured to have this as default.