Interface ITranspilerOptions

The options used for the transpiler, including parsing settings, code indentation, and minification.

interface ITranspilerOptions {
    codeIndent: number;
    minify: boolean;
    parser: ParserOptions;
}

Properties

codeIndent: number

The number of spaces to use for indentation in the generated code.

minify: boolean

Whether to minify the transpiled code (removes unnecessary whitespace and line breaks).

The options for the parser.