import ts from 'typescript' export function getTsConfigRaw(root: string = process.cwd()) { const tsConfigFileRaw = ts.findConfigFile(root, ts.sys.fileExists, 'tsconfig.json') return tsConfigFileRaw }