We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 119affb commit eff21b4Copy full SHA for eff21b4
package.json
@@ -97,5 +97,12 @@
97
"prettier": {
98
"singleQuote": true,
99
"arrowParens": "avoid"
100
+ },
101
+ "lint-staged": {
102
+ "*.ts": [
103
+ "eslint --fix",
104
+ "prettier --write",
105
+ "git add"
106
+ ]
107
}
108
tsconfig.json
@@ -1,5 +1,6 @@
1
{
2
"compilerOptions": {
3
+ "skipLibCheck": true,
4
"target": "es2018",
5
"module": "esnext",
6
"moduleResolution": "bundler",
0 commit comments