Skip to content

Latest commit

 

History

History
37 lines (26 loc) · 926 Bytes

README.md

File metadata and controls

37 lines (26 loc) · 926 Bytes

alias-tool

Features

  1. scss: @(import|use|forward) "@alias/path"; and url(@alias/path.png) go to definition / links
  2. css: @import "@alias/path"; and url(@alias/path.png) go to definition / links
  3. js / ts: import "@alias/path.png" go to definition
  4. fix .png?query go to definition

Extension Settings

alias-tool.mappings:

{
    "alias-tool.mappings": {
        "app": "${folder}/frontend/app",
        "@client": "${folder}/frontend/app",
        "~@client": "${folder}/frontend/app"
    }
}

Supported variables:

Name Description
${folder} The root folder of the current file
${workspace} The root folder of the current workspace

See also

Acknowledgements