Interface TsConfigFile

Representation to tsconfig.json file.

interface TsConfigFile {
    file: string;
    files: readonly string[];
    json: TsConfigJson;
    options: CompilerOptions;
}

Properties

Properties

file: string

Absolute path to the file.

files: readonly string[]

Array of transpiled files.

File contents.

options: CompilerOptions

TypeScript compiler options extracted from file contents.