Skip to content

Instantly share code, notes, and snippets.

@ChangJoo-Park
Created November 13, 2018 02:45
Show Gist options
  • Save ChangJoo-Park/406f2ca92458dabd60b6a4f7251707b2 to your computer and use it in GitHub Desktop.
Save ChangJoo-Park/406f2ca92458dabd60b6a4f7251707b2 to your computer and use it in GitHub Desktop.
vscode jsconfig.json
{
"compilerOptions": {
"module": "commonjs",
"target": "ES6",
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
},
"rootDirs": [
"src"
]
},
"path-intellisense.mappings": {
"@/*": "${workspaceRoot}/src/*"
},
"exclude": ["node_modules", "dist", "**/node_modules/*"]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment