1
0
Fork 0
freesewing/packages/new-design/templates/from-scratch/design/config.js
nikhil ecdb466af3 chore(eslint): Support JSON module imports
Also fix a few violations of the `export-with-import-assertions` rule, places where we import specific top-level keys from JSON files in violation of [the current spec](https://github.com/tc39/proposal-json-modules#why-dont-json-modules-support-named-exports).
2022-09-26 16:58:38 -04:00

17 lines
308 B
JavaScript

import pkg from '../package.json' assert { type: 'json' }
export default {
name: '{{name}}',
version: pkg.version,
optionGroups: {
fit: ['size'],
},
measurements: [],
dependencies: {},
inject: {},
hide: [],
parts: ['box'],
options: {
size: { pct: 50, min: 10, max: 100 },
},
}