Skip to content

Commit

Permalink
added strict null checks compiler option
Browse files Browse the repository at this point in the history
  • Loading branch information
Oaphi committed Aug 11, 2021
1 parent 64d4895 commit ae468d6
Showing 1 changed file with 20 additions and 19 deletions.
39 changes: 20 additions & 19 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,21 +1,22 @@
{
"compilerOptions": {
"strict": true,
"declaration": true,
"removeComments": true,
"allowJs": true,
"checkJs": true,
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"target": "es2019",
"module": "CommonJS",
"moduleResolution": "node",
"noUnusedParameters": true,
"noUnusedLocals": true,
"noErrorTruncation": true,
"skipLibCheck": true,
"downlevelIteration": true,
"outDir": "dist"
},
"exclude": ["dist"],
"include": ["src"]
"compilerOptions": {
"strict": true,
"declaration": true,
"removeComments": true,
"allowJs": true,
"checkJs": true,
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"target": "es2019",
"module": "CommonJS",
"moduleResolution": "node",
"noUnusedParameters": true,
"noUnusedLocals": true,
"noErrorTruncation": true,
"strictNullChecks": true,
"skipLibCheck": true,
"downlevelIteration": true,
"outDir": "dist"
},
"exclude": ["dist"],
"include": ["src"]
}

0 comments on commit ae468d6

Please # to comment.