Interface JVMOptions

Options for creating the Java VM.

interface JVMOptions {
    classpath?: string[];
    ignoreUnreadableClassPathEntries?: boolean;
    isPackagedElectron?: boolean;
    libPath?: null | string;
    opts?: null | string[];
    version?: null | string;
}

Hierarchy (view full)

Properties

classpath?: string[]

Additional items to add to the class path. This does allow for wildcard imports using glob patterns. If a path is unreadable, an error will be thrown. This behaviour can be changed by setting ignore_unreadable_class_path_entries to true.

ignoreUnreadableClassPathEntries?: boolean

Whether to ignore unreadable class path entries

isPackagedElectron?: boolean

Whether this runs inside a packaged electron app

libPath?: null | string

The path to the native library

opts?: null | string[]

Additional arguments to pass to the JVM

version?: null | string

The version of the jvm to request

Generated using TypeDoc