|
2 | 2 | "name": "bazel-jdt-bridge", |
3 | 3 | "displayName": "Bazel Java Support", |
4 | 4 | "description": "Bazel Java dependency resolver for Eclipse JDT.LS", |
5 | | - "version": "0.1.0", |
| 5 | + "version": "0.1.0-pre.2", |
6 | 6 | "publisher": "bazel-jdt", |
7 | 7 | "engines": { |
8 | 8 | "vscode": "^1.85.0" |
|
107 | 107 | "bazel-jdt.dependencyResolution": { |
108 | 108 | "type": "string", |
109 | 109 | "default": "transitive", |
110 | | - "enum": ["transitive", "optional"], |
| 110 | + "enum": [ |
| 111 | + "transitive", |
| 112 | + "optional" |
| 113 | + ], |
111 | 114 | "enumDescriptions": [ |
112 | 115 | "Automatically import all transitive workspace-internal dependencies as Eclipse projects (recommended)", |
113 | 116 | "Mark inter-project dependencies as optional — suppresses errors when dependent projects are absent" |
|
117 | 120 | "bazel-jdt.syncMode": { |
118 | 121 | "type": "string", |
119 | 122 | "default": "fast", |
120 | | - "enum": ["fast", "full"], |
| 123 | + "enum": [ |
| 124 | + "fast", |
| 125 | + "full" |
| 126 | + ], |
121 | 127 | "enumDescriptions": [ |
122 | 128 | "Use header JARs (hjars) for fast sync — best for quick iteration", |
123 | 129 | "Build full JARs for complete IDE experience — slower initial sync but no missing imports" |
|
127 | 133 | "bazel-jdt.dependencySourceLoading": { |
128 | 134 | "type": "string", |
129 | 135 | "default": "full-project", |
130 | | - "enum": ["full-project", "on-demand", "source-view"], |
| 136 | + "enum": [ |
| 137 | + "full-project", |
| 138 | + "on-demand", |
| 139 | + "source-view" |
| 140 | + ], |
131 | 141 | "enumDescriptions": [ |
132 | 142 | "Automatically create Eclipse Projects for all workspace-internal dependencies (recommended, full IDE features)", |
133 | 143 | "Only create Projects for .bazelproject directories. Show notification to create projects on demand when navigating to dependency source files", |
|
0 commit comments