We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fedb5d2 commit a4a87b0Copy full SHA for a4a87b0
package.json
@@ -164,7 +164,7 @@
164
"format": "prettier --write .",
165
"lint": "npm run eslint",
166
"eslint": "eslint --fix --ext .jsx --ext .js --ext .ts --ext .tsx --cache src",
167
- "check-ts-errors": "tsc --noEmit --strict false",
+ "check-ts-errors": "tsc --noEmit --strictNullChecks false",
168
"start": "npm run develop",
169
"serve": "gatsby serve",
170
"clean": "gatsby clean",
tsconfig.json
@@ -11,6 +11,7 @@
11
"module": "esnext",
12
"moduleResolution": "node",
13
"skipLibCheck": true,
14
- "strict": false // match check-ts-errors
+ "strict": false, // match check-ts-errors
15
+ "strictNullChecks": true
16
}
17
0 commit comments