Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Commit

Permalink
Enable strictPropertyInitialization (#11200)
Browse files Browse the repository at this point in the history
  • Loading branch information
t3chguy authored Jul 7, 2023
1 parent 118ee89 commit c153a4d
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,15 @@
"module": "commonjs",
"moduleResolution": "node",
"target": "es2016",
"noImplicitAny": true,
"noUnusedLocals": true,
"sourceMap": false,
"outDir": "./lib",
"declaration": true,
"jsx": "react",
"lib": ["es2020", "dom", "dom.iterable"],
"alwaysStrict": true,
"strictBindCallApply": true,
"strictNullChecks": true,
"noImplicitThis": true
"strict": true,
"strictFunctionTypes": false,
"useUnknownInCatchVariables": false
},
"include": [
"./node_modules/matrix-js-sdk/src/@types/*.d.ts",
Expand Down

0 comments on commit c153a4d

Please sign in to comment.