We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7776fce commit 7530badCopy full SHA for 7530bad
package.json
@@ -50,7 +50,8 @@
50
"start:remix": "run-p start:proxy-server:remix start:app:remix",
51
"fix:prettier": "prettier . --write",
52
"fix:lint": "yarn run eslint --fix",
53
- "lint": "yarn run eslint"
+ "lint": "yarn run eslint",
54
+ "clean:node_modules": "find . -name 'node_modules' -type d -prune -exec rm -rf '{}' +"
55
},
56
"workspaces": [
57
"utils/event-proxy-server",
tsconfig.json
@@ -5,6 +5,7 @@
5
"allowSyntheticDefaultImports": true,
6
"lib": ["es2018"],
7
"strict": true,
8
- "outDir": "dist"
+ "outDir": "dist",
9
+ "skipLibCheck": true
10
}
11
0 commit comments