package-json-type
    Preparing search index...

    Interface IDevEngineRuntime

    Runtime specification for devEngines field.

    interface IDevEngineRuntime {
        name?: string;
        onFail?: "error" | "warn" | "ignore";
        version?: string;
    }
    Index

    Properties

    name?: string

    The name of the runtime (e.g., "node", "bun", "deno").

    onFail?: "error" | "warn" | "ignore"

    An error to show when the engine doesn't match. If true, mismatches will cause an error. If false, only a warning.

    version?: string

    The version range of the runtime.