mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-21 00:59:03 +01:00
Port github extension to use esbuild
Had to make same fixes as with #296355. We can't pull in const enums from a d.ts file like this
This commit is contained in:
@@ -4,7 +4,8 @@
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
|
||||
import * as vscode from 'vscode';
|
||||
import { API as GitAPI, RefType, Repository } from './typings/git.js';
|
||||
import { RefType } from './typings/git.constants.js';
|
||||
import type { API as GitAPI, Repository } from './typings/git.d.ts';
|
||||
import { getRepositoryFromUrl, repositoryHasGitHubRemote } from './util.js';
|
||||
|
||||
export function isFileInRepo(repository: Repository, file: vscode.Uri): boolean {
|
||||
|
||||
Reference in New Issue
Block a user