()
| 548 | let ast = recast.parse(content, { |
| 549 | parser: { |
| 550 | parse() { |
| 551 | return parse(content, { |
| 552 | sourceType: 'module', |
| 553 | plugins: ['typescript', 'jsx', 'importAttributes'], |
| 554 | sourceFilename: file, |
| 555 | tokens: true, |
| 556 | errorRecovery: true |
| 557 | }); |
| 558 | } |
| 559 | } |
| 560 | }); |
| 561 |
no outgoing calls
no test coverage detected