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.
- TypeScript
- JavaScript
rugged.config.ts
import { Config } from 'rugged';
const config: Config = {
// Config options go here
};
export default config;
rugged.config.js
module.exports = {
// Config options go here
};