diff --git a/packages/core/src/config/config.ts b/packages/core/src/config/config.ts index 6f4380b7aa..2f32d8d137 100644 --- a/packages/core/src/config/config.ts +++ b/packages/core/src/config/config.ts @@ -1711,10 +1711,6 @@ export class Config { * @returns true if the path is allowed, false otherwise. */ isPathAllowed(absolutePath: string): boolean { - if (this.interactive && path.isAbsolute(absolutePath)) { - return true; - } - const realpath = (p: string) => { let resolved: string; try {