@tsmodule/tsmodule 40.0.0 → 40.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -6,6 +6,7 @@ interface BuildArgs {
6
6
  dev?: boolean;
7
7
  target?: string | string[];
8
8
  runtimeOnly?: boolean;
9
+ jsOnly?: boolean;
9
10
  noWrite?: boolean;
10
11
  stdin?: string;
11
12
  stdinFile?: string;
@@ -15,5 +16,5 @@ interface BuildArgs {
15
16
  * could mean many things, all of which is handled by the loader which will
16
17
  * resolve them for us.
17
18
  */
18
- export declare const build: ({ input, styles, target, dev, bundle, runtimeOnly, noWrite, stdin, stdinFile, }: BuildArgs) => Promise<string | undefined>;
19
+ export declare const build: ({ input, styles, target, dev, bundle, runtimeOnly, jsOnly, noWrite, stdin, stdinFile, }: BuildArgs) => Promise<string | undefined>;
19
20
  export {};