Interface JavaOptions

Options for the Java VM. Not the same as vm arguments.

interface JavaOptions {
    classpath?: string[];
    ignoreUnreadableClassPathEntries?: boolean;
}

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

Generated using TypeDoc