chore(core,sdk): move the AI SDK v7 forward-compat typecheck out of CI (#3854)

This commit is contained in:
Eric Allam
2026-06-06 18:34:27 +01:00
committed by GitHub
parent 707bf1adb4
commit fa4804e6a7
2 changed files with 4 additions and 2 deletions
+2 -1
View File
@@ -182,7 +182,8 @@
"bundle-vendor": "node scripts/bundle-superjson.mjs",
"build": "pnpm run bundle-vendor && tshy && node scripts/bundle-superjson.mjs --copy && pnpm run update-version",
"dev": "pnpm run bundle-vendor && tshy --watch",
"typecheck": "pnpm run bundle-vendor && tsc --noEmit -p tsconfig.src.json && tsc --noEmit -p tsconfig.ai-v7.json",
"typecheck": "pnpm run bundle-vendor && tsc --noEmit -p tsconfig.src.json",
"typecheck:ai-v7": "pnpm run bundle-vendor && tsc --noEmit -p tsconfig.ai-v7.json",
"pretest": "pnpm run bundle-vendor",
"test": "vitest",
"check-exports": "attw --pack ."
+2 -1
View File
@@ -65,7 +65,8 @@
"clean": "rimraf dist .tshy .tshy-build .turbo",
"build": "tshy && pnpm run update-version",
"dev": "tshy --watch",
"typecheck": "tsc --noEmit && tsc --noEmit -p tsconfig.ai-v7.json",
"typecheck": "tsc --noEmit",
"typecheck:ai-v7": "tsc --noEmit -p tsconfig.ai-v7.json",
"test": "vitest",
"update-version": "tsx ../../scripts/updateVersion.ts",
"check-exports": "attw --pack ."