Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface CompleteTypescriptOptions

Typescript options, can be applied both to the project or for specific targets.

Hierarchy

Index

Properties

Optional strict

strict: undefined | false | true

Exit with non-null return code on any error when building the scripts. In watch mode, the errors are reported but the process does not stop (strict: false).

Default: true. Merge rule: Last write win.

tscOptions

tscOptions: CustomTscOptions

Override the default compiler options. These options are passed to gulp-typescript and used when emiting tsconfig.json files.

Merge rule: Shallow merge.

tsconfigJson

tsconfigJson: string[]

A list of paths where you should generate a tsconfig.json file.

If used in a project: relative to project.root If used in a target: relative to project.src.

Merge rule: Last write win.

typescript

typescript: typeof ts

Typescript instance to use for compilation.

Merge rule: Last write win.

Generated using TypeDoc