Skip to content

Commit 2f6d80c

Browse files
committed
added --skipLibCheck option to type-check
1 parent dbbcd62 commit 2f6d80c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@
1616
],
1717
"scripts": {
1818
"type-check": "tsc --noEmit",
19-
"type-check:yup": "tsc --strict --noEmit example/yup/schemas.ts",
20-
"type-check:zod": "tsc --strict --noEmit example/zod/schemas.ts",
21-
"type-check:myzod": "tsc --strict --noEmit example/myzod/schemas.ts",
19+
"type-check:yup": "tsc --strict --skipLibCheck --noEmit example/yup/schemas.ts",
20+
"type-check:zod": "tsc --strict --skipLibCheck --noEmit example/zod/schemas.ts",
21+
"type-check:myzod": "tsc --strict --skipLibCheck --noEmit example/myzod/schemas.ts",
2222
"test": "vitest run",
2323
"build": "run-p build:*",
2424
"build:main": "tsc -p tsconfig.main.json",

0 commit comments

Comments
 (0)