16 lines
276 B
JavaScript
16 lines
276 B
JavaScript
// @ts-check
|
|
|
|
/**
|
|
* @typedef {{
|
|
* components: 'js'
|
|
* }} McFlyConfig
|
|
*/
|
|
|
|
/**
|
|
* Define the configuration for the McFly project
|
|
* @param {McFlyConfig} config
|
|
* @returns {function(): McFlyConfig}
|
|
*/
|
|
export default function defineConfig(config) {
|
|
return () => config;
|
|
}
|