MFML - v0.0.4
    Preparing search index...

    Interface ResolvedConfig

    Resolved compilation config used by MFML CLI tool.

    interface ResolvedConfig {
        compiler: Compiler;
        messages: { [locale: string]: { [messageKey: string]: string } };
        outDir: string;
        packageName: string;
    }
    Index

    Properties

    compiler: Compiler

    The compiler that transforms messages to source code.

    messages: { [locale: string]: { [messageKey: string]: string } }

    Messages arranged by a locale.

    outDir: string

    The directory that contains node_modules.

    packageName: string

    The name of the package from to which compiled messages are written.