(path: string)
| 220 | } |
| 221 | |
| 222 | function removeTsFileExtension(path: string): string { |
| 223 | if (path.endsWith('.d.ts')) { |
| 224 | return path.slice(0, -5); |
| 225 | } else if (path.endsWith('.ts')) { |
| 226 | return path.slice(0, -3); |
| 227 | } |
| 228 | return path; |
| 229 | } |
| 230 | |
| 231 | function computeTsCompilerOptions( |
| 232 | existingTsConfigFile: any, |
no outgoing calls
no test coverage detected