()
| 5 | import { getPaths } from '.' |
| 6 | |
| 7 | export const isTypeScriptProject = () => { |
| 8 | const paths = getPaths() |
| 9 | return ( |
| 10 | fs.existsSync(path.join(paths.web.base, 'tsconfig.json')) || |
| 11 | fs.existsSync(path.join(paths.api.base, 'tsconfig.json')) |
| 12 | ) |
| 13 | } |
| 14 | |
| 15 | export const sides = () => { |
| 16 | const paths = getPaths() |
no test coverage detected