Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
ui-component-library / .babelrc.js
Size: Mime:
/**
 * running in package.json does weird things to rootdir
 */
module.exports = {
  presets: ['babel-preset-skava'],
  plugins: [
    [
      'module-resolver',
      {
        root: ['./'],
        alias: {
          abstractions: './dist/components/abstractions',
          atoms: './dist/components/atoms',
          organisms: './dist/components/organisms',
          molecules: './dist/components/molecules',
          pages: './dist/components/pages',
          features: './dist/components/features',
          templates: './dist/components/templates',
          presets: './dist/components/presets',
          icons: './dist/components/atoms/Icons',
          state: './dist/state',
          words: './dist/words',
          src: './dist',
          typings: './typings',
          proptypes: '@skava/modules/___dist/view-container/types',
          exotic: 'exotic/',
        },
      },
    ],
  ],
  sourceMaps: true,
}