Skip to content

Commit

Permalink
feat(option): adds a new option 'transpileOnly' that can be toggled o…
Browse files Browse the repository at this point in the history
…n to skip emitting (and checking for) diagnostics
  • Loading branch information
wessberg committed Mar 18, 2019
1 parent 90aaf8d commit 1a916d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plugin/i-typescript-plugin-options.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export interface ITypescriptPluginBaseOptions {
transformers?: (CustomTransformers | CustomTransformersFunction)[] | CustomTransformers | CustomTransformersFunction;
include: string[] | string;
exclude: string[] | string;
transpileOnly: boolean;
transpileOnly?: boolean;
}

export interface ITypescriptPluginTypescriptOptions extends ITypescriptPluginBaseOptions {
Expand Down

0 comments on commit 1a916d5

Please sign in to comment.