8 lines
244 B
TypeScript
8 lines
244 B
TypeScript
import { NormalizedSchema } from '../schema';
|
|
|
|
export function maybeJs(options: NormalizedSchema, path: string): string {
|
|
return options.js && (path.endsWith('.ts') || path.endsWith('.tsx'))
|
|
? path.replace(/\.tsx?$/, '.js')
|
|
: path;
|
|
}
|