Last active
June 7, 2024 20:20
-
-
Save jschwarty/3b058be7d35180fba07d7436795f59fa to your computer and use it in GitHub Desktop.
VSCode setting to set ./node_modules/.bin into PATH on new terminal window open
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"terminal.integrated.env.osx": { | |
"PATH": "./node_modules/.bin:${env:PATH}" | |
}, | |
"terminal.integrated.profiles.osx": { | |
"zsh": { | |
"path": "zsh", | |
"args": ["-i"] | |
} | |
}, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment