nx/packages/react/src/utils/maybe-js.ts
2024-02-12 20:42:11 +00:00

6 lines
197 B
TypeScript

export function maybeJs(options: { js?: boolean }, path: string): string {
return options.js && (path.endsWith('.ts') || path.endsWith('.tsx'))
? path.replace(/\.tsx?$/, '.js')
: path;
}