import { Config } from '@stencil/core'; import { getStencilConfig } from '@ovhcloud/ods-stencil/libraries/stencil-core'; import * as jestConfig from './jest.config'; const args = process.argv.slice(2); const config: Config = { ...getStencilConfig({ namespace: 'osds-checkbox', args, jestConfig: jestConfig.default, reactOutput: { componentCorePackage: '@ovhcloud/ods-stencil/components/checkbox', // exclude peer dependencies that corresponds to www usage excludeComponents: [] }, vueOutput: { componentCorePackage: '@ovhcloud/ods-stencil/components/checkbox', excludeComponents: [] }, dev: { globalScript: 'src/global.dev.ts', }, prod: { globalScript: 'src/global.prod.ts' }, test: { globalScript: 'src/global.test.ts', } }) }; export { config };