// @ts-check /** @type {import('./dist').ScaffoldConfigFile} */ module.exports = () => { // console.log("Config:", conf) return { default: { templates: ["examples/test-input/Component"], output: "examples/test-output", data: { property: "myProp", value: "10" }, }, component: { templates: ["examples/test-input/Component"], output: "examples/test-output/component", data: { property: "myProp", value: "10" }, }, configs: { templates: ["examples/test-input/**/.*"], output: "examples/test-output/configs", name: "---", }, } }