UNPKG

@bootstrap-styled/v4

Version:

twbs/bootstrap V4 UI Components made with bootstrap-styled. Work with css-in-js, react, styled-components, and Bootstrap Styled utilities.

44 lines (43 loc) 826 B
module.exports = { only: [ 'src', 'styleguide', ], presets: [ [ '@babel/preset-env', { modules: false, }, ], '@babel/preset-react', ], plugins: [ 'babel-plugin-styled-components', 'babel-plugin-array-includes', '@babel/plugin-syntax-dynamic-import', '@babel/plugin-syntax-import-meta', '@babel/plugin-proposal-class-properties', '@babel/plugin-proposal-json-strings', [ '@babel/plugin-proposal-decorators', { legacy: true, }, ], ], env: { production: { plugins: [ 'add-module-exports', '@babel/plugin-transform-modules-commonjs', ], }, test: { plugins: [ '@babel/plugin-transform-modules-commonjs', 'dynamic-import-node', ], }, }, };