Styled Components better debugging

I tried installing this babel plugin for a better css debugging experience with styled components.

npm install --save-dev babel-plugin-styled-components

{
  "plugins": ["babel-plugin-styled-components"]
}

However my styles should be something like

<button class="Button-asdf123 asdf123" /> instead of just <button class="asdf123" />.

Any ideas how to get this to work in Meteor.

It’s would be super helpful to have the component class name while Inspecting.