Go to repository

Interface TaskTscOptions

This type represents the options that you can pass to the tsc task.

interface TaskTscOptions {
    emit: boolean;
    outDir?: string;
}

Properties

Properties

emit: boolean

Whether to emit the JS output files or not

Optional
outDir?: string

The output directory for the files. Undefined if in same folder.