import { rm } from 'node:fs/promises'; import { dirname, join } from 'node:path'; import { fileURLToPath } from 'node:url'; const rootDir = dirname(dirname(fileURLToPath(import.meta.url))); await rm(join(rootDir, 'vr180player'), { force: true, recursive: true });