mirror of
https://github.com/chenasraf/simple-scaffold.git
synced 2026-05-17 17:28:09 +00:00
14 lines
395 B
JavaScript
14 lines
395 B
JavaScript
/** @type {import('simple-scaffold').ScaffoldConfigFile} */
|
|
module.exports = {
|
|
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" },
|
|
},
|
|
}
|