You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
loader.ts — resolve Ajv default export so tsc + ESM interop both work
Plain `import Ajv from 'ajv'` works at runtime (Node ESM, Vite) but tsc with
NodeNext sees Ajv as a namespace, not a constructor. Use namespace import +
runtime resolution of `.default ?? namespace` to satisfy both.
0 commit comments