Those using alias in built code, in my case via webpack - so I can alias ~ to __dirname, is there a way to configure code to follow these paths? (like when I ctrl+click it doesn't open the file anymore)
code Answer was - add this to root of project:
// ~/jsconfig.json
{
"compilerOptions": {
"baseUrl": ".",
"paths": {
"~/*": ["./*"]
}
}
}
…then restart the code instance (for it to work for me)