Skip to content

Commit 6a8a9be

Browse files
committed
Support more expression
1 parent 954ab9f commit 6a8a9be

4 files changed

Lines changed: 1313 additions & 61 deletions

File tree

package.json

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,31 @@
4949
"maximum": 2000,
5050
"description": "Debounce delay, in milliseconds, before recomputing decorations after workspace changes."
5151
},
52+
"reactComponentLens.scope.element": {
53+
"type": "boolean",
54+
"default": true,
55+
"description": "Highlight JSX element tags (<Component />, </Component>)."
56+
},
57+
"reactComponentLens.scope.declaration": {
58+
"type": "boolean",
59+
"default": true,
60+
"description": "Highlight component declaration names (function, class, variable)."
61+
},
62+
"reactComponentLens.scope.export": {
63+
"type": "boolean",
64+
"default": true,
65+
"description": "Highlight component names in export declarations (export { Component }, export default Component)."
66+
},
67+
"reactComponentLens.scope.import": {
68+
"type": "boolean",
69+
"default": true,
70+
"description": "Highlight component names in import declarations (import { Component } from ...)."
71+
},
72+
"reactComponentLens.scope.type": {
73+
"type": "boolean",
74+
"default": true,
75+
"description": "Highlight TypeScript interface and type alias declaration names."
76+
},
5277
"reactComponentLens.highlightColors": {
5378
"type": "object",
5479
"default": {

0 commit comments

Comments
 (0)