interface InstallOptions {
    noDependencies?: boolean;
    noPlugins?: boolean;
    reinstall?: boolean;
    useLanguageVersionTools?: boolean;
}

Properties

noDependencies?: boolean

Skip installing dependencies

noPlugins?: boolean

Skip installing plugins

reinstall?: boolean

Reinstall plugins even if they already exist

useLanguageVersionTools?: boolean

Use language version tools to setup the language runtime before installing the dependencies. For Python this will use pyenv to install the Python version specified in a .python-version file. For Nodejs this will use fnm to install the Node.js version specified in a .nvmrc or `.node-version file.

Generated using TypeDoc