The [Emotion swc plugin](https://github.com/swc-project/plugins/tree/main/packages/emotion) doesn't produce a `sourceMappingURL` comment when using the [css prop with the object styles syntax](https://emotion.sh/docs/object-styles#with-the-css-prop). I found existing tests for the Emotion plugin that handle the [css prop w/ the css JS template literal syntax](https://github.com/swc-project/plugins/blob/6809711e4c241a5d159bc501662856f2073ed6a5/packages/emotion/transform/tests/fixture/css-in-callback/input.tsx#L63) I could not find any tests for the css prop w/ object styles. ## Examples **Creates `sourceMappingURL`** ``` <div css={css`color: red`}>Hello</div> ``` **Missing `sourceMappingURL`** ``` <div css={{ color: 'red' }}>Hello</div> ```