···11+---
22+'@urql/core': patch
33+---
44+55+Fix `@ts-ignore` on TypeScript peer dependency import in typings not being applied due to a leading `!` character.
+1-1
scripts/rollup/cleanup-plugin.mjs
···1212 if (dtsFilter(chunk.fileName)) {
1313 return input
1414 .replace(emptyImportRe, '')
1515- .replace(gqlImportRe, x => '/*!@ts-ignore*/\n' + x);
1515+ .replace(gqlImportRe, x => '/*@ts-ignore*/\n' + x);
1616 }
1717 },
1818 };