Skip to content

Commit 7530bad

Browse files
committed
fix(ts): Add skipLibCheck
1 parent 7776fce commit 7530bad

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,8 @@
5050
"start:remix": "run-p start:proxy-server:remix start:app:remix",
5151
"fix:prettier": "prettier . --write",
5252
"fix:lint": "yarn run eslint --fix",
53-
"lint": "yarn run eslint"
53+
"lint": "yarn run eslint",
54+
"clean:node_modules": "find . -name 'node_modules' -type d -prune -exec rm -rf '{}' +"
5455
},
5556
"workspaces": [
5657
"utils/event-proxy-server",

tsconfig.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
"allowSyntheticDefaultImports": true,
66
"lib": ["es2018"],
77
"strict": true,
8-
"outDir": "dist"
8+
"outDir": "dist",
9+
"skipLibCheck": true
910
}
1011
}

0 commit comments

Comments
 (0)