Skip to content

Commit

Permalink
- adding all imports to rollup watch #147, #7
Browse files Browse the repository at this point in the history
  • Loading branch information
ezolenko committed Mar 25, 2019
1 parent 518c886 commit 2d33064
Show file tree
Hide file tree
Showing 15 changed files with 797 additions and 486 deletions.
2 changes: 1 addition & 1 deletion dist/index.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 4 additions & 2 deletions dist/parse-tsconfig.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
import * as tsTypes from "typescript";
import { IContext } from "./context";
import { IOptions } from "./ioptions";
export declare function parseTsConfig(context: IContext, pluginOptions: IOptions): tsTypes.ParsedCommandLine;
export declare function parseTsConfig(context: IContext, pluginOptions: IOptions): {
parsedTsConfig: import("typescript").ParsedCommandLine;
fileName: string | undefined;
};
//# sourceMappingURL=parse-tsconfig.d.ts.map
2 changes: 1 addition & 1 deletion dist/parse-tsconfig.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

165 changes: 93 additions & 72 deletions dist/rollup-plugin-typescript2.cjs.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/rollup-plugin-typescript2.cjs.js.map

Large diffs are not rendered by default.

165 changes: 93 additions & 72 deletions dist/rollup-plugin-typescript2.es.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/rollup-plugin-typescript2.es.js.map

Large diffs are not rendered by default.

4 changes: 3 additions & 1 deletion dist/tscache.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ export interface ICode {
map?: string;
dts?: tsTypes.OutputFile;
dtsmap?: tsTypes.OutputFile;
references?: string[];
}
export interface IDiagnostics {
flatMessage: string;
Expand All @@ -14,7 +15,8 @@ export interface IDiagnostics {
code: number;
type: string;
}
export declare function convertEmitOutput(output: tsTypes.EmitOutput): ICode;
export declare function convertEmitOutput(output: tsTypes.EmitOutput, references?: string[]): ICode;
export declare function getAllReferences(importer: string, snapshot: tsTypes.IScriptSnapshot | undefined, options: tsTypes.CompilerOptions): string[];
export declare function convertDiagnostic(type: string, data: tsTypes.Diagnostic[]): IDiagnostics[];
export declare class TsCache {
private noCache;
Expand Down
2 changes: 1 addition & 1 deletion dist/tscache.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 2d33064

Please sign in to comment.