mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 10:58:30 -05:00
Fix some no unsafe assignment errors in azurecore (#22643)
This commit is contained in:
@@ -97,7 +97,7 @@ export class AzureResourceService {
|
||||
}
|
||||
|
||||
for (const extension of extensions.all) {
|
||||
const contributes = extension.packageJSON && extension.packageJSON.contributes;
|
||||
const contributes = extension.packageJSON.contributes as { [key: string]: string } | undefined;
|
||||
if (!contributes) {
|
||||
continue;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user