fix: add @ts-ignore to import.meta.url

This commit is contained in:
Derrick Hammer 2023-06-25 17:09:20 -04:00
parent 4761259c9c
commit bdd2b66725
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 1 additions and 0 deletions

View File

@ -2,5 +2,6 @@ import { dirname } from "node:path";
import { fileURLToPath } from "node:url";
export default function () {
// @ts-ignore
return dirname(fileURLToPath(import.meta.url));
}