`@vue/compiler-sfc` is designed to be used on SFCs and not jsx/js components, but there's no test in this module to skip them. ```js import { parse } from '@vue/compiler-sfc' parse('export default { /* <script setup> */ render() { return null } }') // throws an error ```