rem’s avatarrem’s Twitter Archive—№ 71,962

    1. 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)
      oh my god twitter doesn’t include alt text from images in their API
  1. …in reply to @rem
    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)