@wpazderski/js-utils
    Preparing search index...

    Interface PartialTsConfig

    Represents a partial TypeScript configuration file (tsconfig.json).

    interface PartialTsConfig {
        compilerOptions?: CompilerOptions;
        extends?: string;
    }
    Index

    Properties

    compilerOptions?: CompilerOptions

    Represents the compiler options in a TypeScript configuration file (tsconfig.json).

    extends?: string

    Represents the path to the tsconfig.json file that this configuration extends.