(challengeFiles: ChallengeFile[])
| 176 | }; |
| 177 | |
| 178 | function hasTS(challengeFiles: ChallengeFile[]) { |
| 179 | return challengeFiles.some( |
| 180 | challengeFile => challengeFile.ext === 'ts' || challengeFile.ext === 'tsx' |
| 181 | ); |
| 182 | } |
| 183 | |
| 184 | const isTSConfig = (f: { name: string; ext: string }) => |
| 185 | f.name === 'tsconfig' && f.ext === 'json'; |
no outgoing calls
no test coverage detected