Skip to main content

Config file

Rugged supports a configuration file at the root of the repository, written in either TypeScript or JavaScript. The file can use any of the available config options.

rugged.config.ts
import { Config } from 'rugged';

const config: Config = {
// Config options go here
};

export default config;