You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"description": "Enables experimental support for proposed ES decorators.",
155
+
"type": "boolean"
156
+
},
157
+
"emitDecoratorMetadata": {
158
+
"description": "When down-level compiling, emit design-type metadata for decorated declarations in source.",
159
+
"type": "boolean"
160
+
},
161
+
"allowUnusedLabels": {
162
+
"type": "boolean",
163
+
"description": "Do not report errors on unused labels."
164
+
},
165
+
"noFallthroughCasesInSwitch": {
166
+
"type": "boolean",
167
+
"description": "Report errors for fallthrough cases in switch statement."
168
+
},
169
+
"allowUnreachableCode": {
170
+
"type": "boolean",
171
+
"description": "Do not report errors on unreachable code."
172
+
},
173
+
"forceConsistentCasingInFileNames": {
174
+
"type": "boolean",
175
+
"description": "Disallow inconsistently-cased references to the same file."
176
+
},
177
+
"allowSyntheticDefaultImports": {
178
+
"type": "boolean",
179
+
"description": "Allow default imports from modules with no default export. This does not affect code emit, just typechecking."
180
+
},
181
+
"noImplicitUseStrict": {
182
+
"type": "boolean",
183
+
"description": "When down-level compiling, do not emit \"use strict\" directives in module output."
184
+
}
185
+
},
186
+
"additionalProperties": false
187
+
},
188
+
"files": {
189
+
"type": "array",
190
+
"description": "If no 'files' property is present in a jsconfig.json, the language service defaults to including all files the containing directory and subdirectories. When a 'files' property is specified, only those files are included.",
191
+
"items": {
192
+
"type": "string",
193
+
"format": "uri"
194
+
}
195
+
},
196
+
"exclude": {
197
+
"type": "array",
198
+
"description": "List files and folders that should not be included. This property is not honored when the 'files' property is present.",
0 commit comments