Last active
March 27, 2019 22:42
-
-
Save ZephiroRB/36603409171ca33089eef5a20ab85e94 to your computer and use it in GitHub Desktop.
Add support multiple extension for jQuery Code Snippets VS Code
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
{ | |
"name": "jquerysnippets", | |
"displayName": "jQuery Code Snippets", | |
"description": "Over 130 jQuery Code Snippets", | |
"version": "0.0.1", | |
"publisher": "donjayamanne", | |
"license": "SEE LICENSE IN LICENSE or README.MD", | |
"homepage": "https://github.com/DonJayamanne/jquerysnippets/blob/master/README.md", | |
"icon": "images/icon.png", | |
"engines": { | |
"vscode": "^0.10.1" | |
}, | |
"galleryBanner": { | |
"color": "#ffffff", | |
"theme": "light" | |
}, | |
"categories": [ | |
"Snippets" | |
], | |
"contributes": { | |
"snippets": [ | |
{ | |
"language": "javascript", | |
"path": "./snippets/javascript.json" | |
}, | |
{ | |
"language": "pug", | |
"path": "./snippets/javascript.json" | |
}, | |
{ | |
"language": "jade", | |
"path": "./snippets/javascript.json" | |
}, | |
{ | |
"language": "html", | |
"path": "./snippets/javascript.json" | |
}, | |
{ | |
"language": "cfml", | |
"path": "./snippets/javascript.json" | |
}, | |
{ | |
"language": "slim", | |
"path": "./snippets/javascript.json" | |
}, | |
{ | |
"language": "cfm", | |
"path": "./snippets/javascript.json" | |
}, | |
{ | |
"language": "php", | |
"path": "./snippets/javascript.json" | |
}, | |
{ | |
"language": "tpl", | |
"path": "./snippets/javascript.json" | |
}, | |
{ | |
"language": "ts", | |
"path": "./snippets/javascript.json" | |
}, | |
{ | |
"language": "blade", | |
"path": "./snippets/javascript.json" | |
} | |
] | |
}, | |
"scripts": { | |
"vscode:prepublish": "node ./node_modules/vscode/bin/compile", | |
"compile": "node ./node_modules/vscode/bin/compile -watch -p ./" | |
}, | |
"devDependencies": { | |
"typescript": "^1.6.2", | |
"vscode": "0.10.x" | |
}, | |
"__metadata": { | |
"id": "99c12a52-ff68-4e9d-a975-a67556fee2f5", | |
"publisherId": "1ba8bd00-2ad1-4be0-a007-5b4b954c1ee7", | |
"publisherDisplayName": "Don Jayamanne" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment