Skip to content

Instantly share code, notes, and snippets.

@armand1m
Created April 29, 2018 12:31
Show Gist options
  • Save armand1m/e8b889497eec7e3d2ef166d52cdb0c64 to your computer and use it in GitHub Desktop.
Save armand1m/e8b889497eec7e3d2ef166d52cdb0c64 to your computer and use it in GitHub Desktop.
VSCode Intellisense for Javascript projects with Module path alias
{
"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