Skip to content

Commit 5ed2a8b

Browse files
committed
chore: fix typecheck scripts and add skipLibCheck flag
1 parent 9c24995 commit 5ed2a8b

File tree

8 files changed

+7
-8
lines changed

8 files changed

+7
-8
lines changed

.github/workflows/test.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,3 @@ jobs:
2727
- run: npm run lint
2828
- run: npm run checkdeps
2929
- run: npm test
30-
- run: npm run typecheck

packages/betsy/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"build:lib": "tsc --outDir lib --module commonjs",
1414
"build:es": "tsc --outDir es --module ES2022 --target ES2022",
1515
"clean": "rimraf es lib coverage",
16-
"typecheck": "tsc --noEmit",
16+
"typecheck": "tsc --noEmit --skipLibCheck",
1717
"test": "jest",
1818
"test:watch": "jest --watch --updateSnapshot --coverage false",
1919
"prebuild": "npm run clean",

packages/overmind-graphql/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"build:lib": "tsc --outDir lib --module commonjs",
1414
"build:es": "tsc --outDir es --module ES2022 --target ES2022",
1515
"clean": "rimraf es lib coverage",
16-
"typecheck": "tsc --noEmit",
16+
"typecheck": "tsc --noEmit --skipLibCheck",
1717
"test": "jest --runInBand --detectOpenHandles --forceExit",
1818
"test:watch": "jest --watch --updateSnapshot --coverage false",
1919
"prebuild": "npm run clean",

packages/overmind-react/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"build:lib": "tsc --outDir lib --module commonjs",
1414
"build:es": "tsc --outDir es --module ES2022 --target ES2022",
1515
"clean": "rimraf es lib coverage",
16-
"typecheck": "tsc --noEmit",
16+
"typecheck": "tsc --noEmit --skipLibCheck",
1717
"test": "jest --runInBand",
1818
"test:watch": "jest --watch --updateSnapshot --coverage false",
1919
"prebuild": "npm run clean",

packages/overmind-statechart/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"build:lib": "tsc --outDir lib --module commonjs",
1414
"build:es": "tsc --outDir es --module ES2022 --target ES2022",
1515
"clean": "rimraf es lib coverage",
16-
"typecheck": "tsc --noEmit",
16+
"typecheck": "tsc --noEmit --skipLibCheck",
1717
"test": "jest --runInBand",
1818
"test:watch": "jest --watch --updateSnapshot --coverage false",
1919
"prebuild": "npm run clean",

packages/overmind-svelte/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"build:lib": "tsc --outDir lib --module commonjs",
1414
"build:es": "tsc --outDir es --module ES2022 --target ES2022",
1515
"clean": "rimraf es lib coverage",
16-
"typecheck": "tsc --noEmit",
16+
"typecheck": "tsc --noEmit --skipLibCheck",
1717
"test": "jest --runInBand",
1818
"test:watch": "jest --watch --updateSnapshot --coverage false",
1919
"prebuild": "npm run clean",

packages/overmind/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"build:es": "tsc --outDir es --module ES2022 --target ES2022",
1515
"build:dist": "webpack --config webpack.config.js",
1616
"clean": "rimraf es lib coverage",
17-
"typecheck": "tsc --noEmit",
17+
"typecheck": "tsc --noEmit --skipLibCheck",
1818
"test": "jest --runInBand && npm run test:size",
1919
"test:watch": "jest --watch --coverage false",
2020
"test:size": "size-limit",

packages/proxy-state-tree/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"build:es": "tsc --outDir es --module ES2022 --target ES2022",
1212
"build:dist": "webpack --config webpack.config.js",
1313
"clean": "rimraf es lib coverage",
14-
"typecheck": "tsc --noEmit",
14+
"typecheck": "tsc --noEmit --skipLibCheck",
1515
"test": "jest --runInBand && npm run test:size",
1616
"test:watch": "jest --watch --updateSnapshot --coverage false",
1717
"test:size": "size-limit",

0 commit comments

Comments
 (0)