Skip to content

Commit

Permalink
- build
Browse files Browse the repository at this point in the history
  • Loading branch information
ezolenko committed Feb 1, 2022
1 parent 6644917 commit cffc4da
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 3 deletions.
1 change: 1 addition & 0 deletions dist/host.d.ts
Expand Up @@ -26,5 +26,6 @@ export declare class LanguageServiceHost implements tsTypes.LanguageServiceHost
directoryExists(directoryName: string): boolean;
getDirectories(directoryName: string): string[];
getCustomTransformers(): tsTypes.CustomTransformers | undefined;
trace(line: string): void;
}
//# sourceMappingURL=host.d.ts.map
2 changes: 1 addition & 1 deletion dist/host.d.ts.map

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

3 changes: 3 additions & 0 deletions dist/rollup-plugin-typescript2.cjs.js
Expand Up @@ -17430,6 +17430,9 @@ class LanguageServiceHost {
}
return transformer;
}
trace(line) {
console.log(line);
}
}

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

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions dist/rollup-plugin-typescript2.es.js
Expand Up @@ -17399,6 +17399,9 @@ class LanguageServiceHost {
}
return transformer;
}
trace(line) {
console.log(line);
}
}

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

Large diffs are not rendered by default.

0 comments on commit cffc4da

Please sign in to comment.