10 lines
198 B
TypeScript
10 lines
198 B
TypeScript
import { SDLCConfig, defaultConfig } from 'sdlc';
|
|
|
|
export default function makeConfig(): SDLCConfig {
|
|
const config: SDLCConfig = defaultConfig;
|
|
|
|
// Customize configuration here
|
|
|
|
return config;
|
|
}
|