Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
15 lines
504 B
Plaintext
15 lines
504 B
Plaintext
/**
|
|
* Returns the path that navigates from the import map file to the base directory.
|
|
* This can then be prepended to relative paths in the import map to get the full, absolute path.
|
|
*/
|
|
export declare function getImportMapToBaseDirPath({ baseDir, importMapPath, }: {
|
|
/**
|
|
* Absolute path to the base directory
|
|
*/
|
|
baseDir: string;
|
|
/**
|
|
* Absolute path to the import map file
|
|
*/
|
|
importMapPath: string;
|
|
}): string;
|
|
//# sourceMappingURL=getImportMapToBaseDirPath.d.ts.map |