Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Switch to standard imports #169451

Merged
merged 2 commits into from Dec 16, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion extensions/github/src/pushErrorHandler.ts
Expand Up @@ -7,7 +7,7 @@ import { TextDecoder } from 'util';
import { commands, env, ProgressLocation, Uri, window, workspace, QuickPickOptions, FileType, l10n } from 'vscode';
import { getOctokit } from './auth';
import { GitErrorCodes, PushErrorHandler, Remote, Repository } from './typings/git';
import path = require('path');
TylerLeonhardt marked this conversation as resolved.
Show resolved Hide resolved
import * as path from 'path';

type Awaited<T> = T extends PromiseLike<infer U> ? Awaited<U> : T;

Expand Down
2 changes: 1 addition & 1 deletion extensions/microsoft-authentication/src/AADHelper.ts
Expand Up @@ -5,7 +5,7 @@

import * as vscode from 'vscode';
import * as querystring from 'querystring';
import path = require('path');
import * as path from 'path';
import Logger from './logger';
import { isSupportedEnvironment } from './utils';
import { generateCodeChallenge, generateCodeVerifier, randomUUID } from './cryptoUtils';
Expand Down
4 changes: 2 additions & 2 deletions extensions/npm/src/preferred-pm.ts
Expand Up @@ -4,9 +4,9 @@
*--------------------------------------------------------------------------------------------*/

import findWorkspaceRoot = require('../node_modules/find-yarn-workspace-root');
import findUp = require('find-up');
import * as findUp from 'find-up';
import * as path from 'path';
import whichPM = require('which-pm');
import * as whichPM from 'which-pm';
import { Uri, workspace } from 'vscode';

interface PreferredProperties {
Expand Down