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

Don't bundle external dependencies #70

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions dist/check-tsconfig.d.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
import * as tsTypes from "typescript";
export declare function checkTsConfig(parsedConfig: tsTypes.ParsedCommandLine): void;
import * as tsTypes from "typescript";
export declare function checkTsConfig(parsedConfig: tsTypes.ParsedCommandLine): void;
14 changes: 7 additions & 7 deletions dist/diagnostics-format-host.d.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import * as tsTypes from "typescript";
export declare class FormatHost implements tsTypes.FormatDiagnosticsHost {
getCurrentDirectory(): string;
getCanonicalFileName(fileName: string): string;
getNewLine(): string;
}
export declare const formatHost: FormatHost;
import * as tsTypes from "typescript";
export declare class FormatHost implements tsTypes.FormatDiagnosticsHost {
getCurrentDirectory(): string;
getCanonicalFileName(fileName: string): string;
getNewLine(): string;
}
export declare const formatHost: FormatHost;
10 changes: 5 additions & 5 deletions dist/get-option-defaults.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export declare function getOptionsDefaults(): {
compilerOptions: {
module: string;
};
};
export declare function getOptionsDefaults(): {
compilerOptions: {
module: string;
};
};
18 changes: 9 additions & 9 deletions dist/icache.d.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
export interface ICache<DataType> {
exists(name: string): boolean;
path(name: string): string;
match(names: string[]): boolean;
read(name: string): DataType | null | undefined;
write(name: string, data: DataType): void;
touch(name: string): void;
roll(): void;
}
export interface ICache<DataType> {
exists(name: string): boolean;
path(name: string): string;
match(names: string[]): boolean;
read(name: string): DataType | null | undefined;
write(name: string, data: DataType): void;
touch(name: string): void;
roll(): void;
}
32 changes: 16 additions & 16 deletions dist/ioptions.d.ts
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
import { tsModule } from "./tsproxy";
export interface IOptions {
include: string | string[];
exclude: string | string[];
check: boolean;
verbosity: number;
clean: boolean;
cacheRoot: string;
abortOnError: boolean;
rollupCommonJSResolveHack: boolean;
tsconfig?: string;
useTsconfigDeclarationDir: boolean;
typescript: typeof tsModule;
tsconfigOverride: any;
tsconfigDefaults: any;
}
import { tsModule } from "./tsproxy";
export interface IOptions {
include: string | string[];
exclude: string | string[];
check: boolean;
verbosity: number;
clean: boolean;
cacheRoot: string;
abortOnError: boolean;
rollupCommonJSResolveHack: boolean;
tsconfig?: string;
useTsconfigDeclarationDir: boolean;
typescript: typeof tsModule;
tsconfigOverride: any;
tsconfigDefaults: any;
}
8 changes: 4 additions & 4 deletions dist/irollup-options.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export interface IRollupOptions {
dest?: string;
file?: string;
}
export interface IRollupOptions {
dest?: string;
file?: string;
}
2 changes: 1 addition & 1 deletion dist/normalize.d.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export declare function normalize(fileName: string): string;
export declare function normalize(fileName: string): string;
8 changes: 4 additions & 4 deletions dist/parse-tsconfig.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as tsTypes from "typescript";
import { IContext } from "./context";
import { IOptions } from "./ioptions";
export declare function parseTsConfig(context: IContext, pluginOptions: IOptions): tsTypes.ParsedCommandLine;
import * as tsTypes from "typescript";
import { IContext } from "./context";
import { IOptions } from "./ioptions";
export declare function parseTsConfig(context: IContext, pluginOptions: IOptions): tsTypes.ParsedCommandLine;
6 changes: 3 additions & 3 deletions dist/partial.d.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export declare type Partial<T> = {
[P in keyof T]?: T[P];
};
export declare type Partial<T> = {
[P in keyof T]?: T[P];
};
Loading