Skip to content

Commit

Permalink
Turn on TS strict mode #541
Browse files Browse the repository at this point in the history
  • Loading branch information
petermakowski committed Aug 25, 2022
1 parent f7dc98a commit 71cae18
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,22 @@
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"alwaysStrict": true,
"strict": false,
"strict": true,
"forceConsistentCasingInFileNames": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "react",
"types": ["node", "jest", "@types/jest", "cypress", "@testing-library/cypress", "@testing-library/react", "@testing-library/jest-dom"],
"types": [
"node",
"jest",
"@types/jest",
"cypress",
"@testing-library/cypress",
"@testing-library/react",
"@testing-library/jest-dom"
],
"paths": {
"components": ["./components"],
"hooks": ["./hooks"],
Expand Down

0 comments on commit 71cae18

Please sign in to comment.