Created
April 29, 2018 12:31
-
-
Save armand1m/e8b889497eec7e3d2ef166d52cdb0c64 to your computer and use it in GitHub Desktop.
VSCode Intellisense for Javascript projects with Module path alias
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
Show hidden characters
{ | |
"compilerOptions": { | |
"target": "ES6", | |
"module": "commonjs", | |
"allowSyntheticDefaultImports": true, | |
"baseUrl": "./", | |
"paths": { | |
"Api/*": ["./src/api/*"], | |
"Components/*": ["./src/components/*"] | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment