Skip to content

Instantly share code, notes, and snippets.

@wanxe
Last active August 22, 2018 22:50
Show Gist options
  • Save wanxe/6a81822bcecd78a576cb8454f8e19925 to your computer and use it in GitHub Desktop.
Save wanxe/6a81822bcecd78a576cb8454f8e19925 to your computer and use it in GitHub Desktop.
Improves the webpack aliases VSCode vue files
{
"include": [
"./src/**/*"
],
"compilerOptions": {
"baseUrl": ".",
"target": "ES6",
"checkJs": false,
"paths": {
"@/*": ["src/*"],
"@scss/scss/*": ["src/scss/*"],
"@utils/utils/*": ["src/utils/*"],
}
},
"exclude": ["node_modules", "dist"]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment