(subPath: string)
| 70 | const projectRoot = getProjectRootPath(); |
| 71 | const appSourceDir = getProjectAppPath(); |
| 72 | const resolveFromAppRoot = (subPath: string) => path.resolve(projectRoot, getProjectAppRelativePath(subPath)); |
| 73 | const appGlobPattern = `${appSourceDir}/**`; |
| 74 | |
| 75 | // Resolve @nativescript/core root. |
no test coverage detected