(filePath: string)
| 459 | } |
| 460 | |
| 461 | private isTemplateOrStyleFile(filePath: string): boolean { |
| 462 | const ext = path.extname(filePath).toLowerCase(); |
| 463 | return ['.html', '.scss', '.css', '.less', '.sass', '.styl'].includes(ext); |
| 464 | } |
| 465 | |
| 466 | private isCompositionRootFile(filePath: string): boolean { |
| 467 | const normalized = filePath.toLowerCase().replace(/\\/g, '/'); |