mirror of
https://github.com/chenasraf/stimvisor.git
synced 2026-05-18 01:39:07 +00:00
18 lines
384 B
JavaScript
18 lines
384 B
JavaScript
// @ts-check
|
|
/** @type {import('simple-scaffold').ScaffoldConfigFile} */
|
|
// eslint-disable-next-line no-undef
|
|
module.exports = {
|
|
component: {
|
|
templates: ['gen/component'],
|
|
output: 'src/components',
|
|
subdirHelper: 'pascalCase',
|
|
subdir: true,
|
|
},
|
|
page: {
|
|
templates: ['gen/page'],
|
|
output: 'src/pages',
|
|
subdirHelper: 'pascalCase',
|
|
subdir: true,
|
|
},
|
|
}
|