Interface TsConfigJson

Contents of tsconfig.json file.

interface TsConfigJson {
    compilerOptions?: RawCompilerOptions;
    exclude?: readonly string[];
    extends?: string;
    files?: readonly string[];
    include?: readonly string[];
}

Properties

compilerOptions?: RawCompilerOptions
exclude?: readonly string[]
extends?: string
files?: readonly string[]
include?: readonly string[]