UNPKG

@mintlify/common

Version:

Commonly shared code within Mintlify

10 lines (9 loc) 260 B
import { transform } from 'sucrase'; export const stripTsxTypes = (code) => { const result = transform(code, { transforms: ['typescript', 'jsx'], jsxRuntime: 'preserve', disableESTransforms: true, }); return result.code; };