Created
April 23, 2017 18:56
-
-
Save paprikka/0c079ea4679ddc0c911071dd6fed5f60 to your computer and use it in GitHub Desktop.
ES import with better autocomplete
This file contains 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
// Add this to your VSCode snippets | |
"import": { | |
"prefix": "imm", | |
"description": "ES module import", | |
"body": [ | |
"import ${2:scope} from '${1:moduleName}'", | |
"${3}" | |
] | |
}, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment