Interface BuildPropConfig

Interface representing the configuration options for the build process.

Since

0.1.0

interface BuildPropConfig {
    rootDir: string;
    outDir: string;
    tsconfig: string;
    minify: MinifyConfig;
}

Properties

rootDir: string

The root directory of the project from where the build process starts. This path should be a string representing a valid file system path.

outDir: string

The output directory where the build process will place generated files. This path should be a string representing a valid file system path.

tsconfig: string

The path to the tsconfig.json file that will be used during the build process. This path should be a string representing a valid file system path relative to the rootDir.

minify: MinifyConfig

Configuration options for minification process.

Generated using TypeDoc v0.25.12