forked from kaminaly/vscode-react-pug
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·38 lines (38 loc) · 1.02 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·38 lines (38 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"name": "vscode-react-coffee-pug",
"displayName": "vscode-react-coffee-pug",
"description": "Syntax highlighting for pug in coffee (babel-plugin-transform-react-pug)",
"version": "0.0.1",
"publisher": "LoopCow",
"icon": "logo.png",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/caoool/vscode-react-coffee-pug.git"
},
"engines": {
"vscode": "*"
},
"categories": [
"Programming Languages"
],
"contributes": {
"grammars": [
{
"scopeName": "react.pug",
"path": "./syntaxes/react-pug.json",
"injectTo": [
"source.js",
"source.ts",
"source.jsx",
"source.js.jsx",
"source.tsx",
"source.coffee"
],
"embeddedLanguages": {
"react.pug": "jade"
}
}
]
}
}