-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
- Loading branch information
There are no files selected for viewing
This file was deleted.
This file was deleted.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import * as tsTypes from "typescript"; | ||
import { RollupContext } from "./context"; | ||
export interface IDiagnostics { | ||
flatMessage: string; | ||
formatted: string; | ||
fileLine?: string; | ||
category: tsTypes.DiagnosticCategory; | ||
code: number; | ||
type: string; | ||
} | ||
export declare function convertDiagnostic(type: string, data: tsTypes.Diagnostic[]): IDiagnostics[]; | ||
export declare function printDiagnostics(context: RollupContext, diagnostics: IDiagnostics[], pretty?: boolean): void; | ||
//# sourceMappingURL=diagnostics.d.ts.map |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
import * as tsTypes from "typescript"; | ||
import { IOptions } from "./ioptions"; | ||
import { IContext } from "./context"; | ||
import { RollupContext } from "./context"; | ||
export declare function getOptionsOverrides({ useTsconfigDeclarationDir, cacheRoot }: IOptions, preParsedTsconfig?: tsTypes.ParsedCommandLine): tsTypes.CompilerOptions; | ||
export declare function createFilter(context: IContext, pluginOptions: IOptions, parsedConfig: tsTypes.ParsedCommandLine): (id: unknown) => boolean; | ||
export declare function createFilter(context: RollupContext, pluginOptions: IOptions, parsedConfig: tsTypes.ParsedCommandLine): (id: unknown) => boolean; | ||
//# sourceMappingURL=get-options-overrides.d.ts.map |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
This file was deleted.
This file was deleted.