Repro steps:
- Open ./src/index.ts
- Select
ConfigSchemaand use the "Move to new file" refactor
Expected:
import { z } from "zod";
const ConfigSchema = z.object({});Actual:
import type { z } from "../node_modules/zod/v4/classic/external.cjs";
const ConfigSchema = z.object({});