mirror of
https://github.com/ezolenko/rollup-plugin-typescript2.git
synced 2025-12-08 19:06:16 +00:00
- build
This commit is contained in:
parent
a0b835d51a
commit
f19dfae1d8
4
dist/index.d.ts
vendored
4
dist/index.d.ts
vendored
@ -1,5 +1,5 @@
|
||||
import { IRollupContext } from "./context";
|
||||
import { ICode } from "./tscache";
|
||||
import { IRollupCode } from "./tscache";
|
||||
import { IRollupOptions } from "./irollup-options";
|
||||
import { IOptions } from "./ioptions";
|
||||
import { Partial } from "./partial";
|
||||
@ -8,7 +8,7 @@ export default function typescript(options?: Partial<IOptions>): {
|
||||
options(config: IRollupOptions): void;
|
||||
resolveId(importee: string, importer: string): string | null;
|
||||
load(id: string): string | undefined;
|
||||
transform(this: IRollupContext, code: string, id: string): ICode | undefined;
|
||||
transform(this: IRollupContext, code: string, id: string): IRollupCode | undefined;
|
||||
ongenerate(): void;
|
||||
onwrite({ dest, file }: IRollupOptions): void;
|
||||
};
|
||||
|
||||
1337
dist/rollup-plugin-typescript2.cjs.js
vendored
1337
dist/rollup-plugin-typescript2.cjs.js
vendored
File diff suppressed because it is too large
Load Diff
2
dist/rollup-plugin-typescript2.cjs.js.map
vendored
2
dist/rollup-plugin-typescript2.cjs.js.map
vendored
File diff suppressed because one or more lines are too long
1511
dist/rollup-plugin-typescript2.es.js
vendored
1511
dist/rollup-plugin-typescript2.es.js
vendored
File diff suppressed because it is too large
Load Diff
2
dist/rollup-plugin-typescript2.es.js.map
vendored
2
dist/rollup-plugin-typescript2.es.js.map
vendored
File diff suppressed because one or more lines are too long
6
dist/tscache.d.ts
vendored
6
dist/tscache.d.ts
vendored
@ -5,6 +5,12 @@ export interface ICode {
|
||||
map: string | undefined;
|
||||
dts?: tsTypes.OutputFile | undefined;
|
||||
}
|
||||
export interface IRollupCode {
|
||||
code: string | undefined;
|
||||
map: {
|
||||
mappings: string;
|
||||
};
|
||||
}
|
||||
export interface IDiagnostics {
|
||||
flatMessage: string;
|
||||
formatted: string;
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
import { RollupContext } from "./rollupcontext";
|
||||
import { ConsoleContext, IRollupContext, VerbosityLevel } from "./context";
|
||||
import { LanguageServiceHost } from "./host";
|
||||
import { TsCache, convertDiagnostic, ICode, IRollupCode } from "./tscache";
|
||||
import { TsCache, convertDiagnostic, IRollupCode } from "./tscache";
|
||||
import { tsModule, setTypescriptModule } from "./tsproxy";
|
||||
import * as tsTypes from "typescript";
|
||||
import * as resolve from "resolve";
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user