(dir)
| 472 | }; |
| 473 | |
| 474 | const getTsOptions = async (dir) => { |
| 475 | const {default: tsc} = await import('typescript'); |
| 476 | return tsc.parseJsonSourceFileConfigFileContent( |
| 477 | tsc.readJsonConfigFile(`${dir}/tsconfig.json`, tsc.sys.readFile), |
| 478 | tsc.sys, |
| 479 | dir, |
| 480 | ); |
| 481 | }; |
| 482 | |
| 483 | const tsCheck = async (dir) => { |
| 484 | const path = await import('path'); |
no outgoing calls
no test coverage detected
searching dependent graphs…