Skip to content

Commit

Permalink
Stricter tsconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
marekdedic committed Sep 12, 2024
1 parent 88b4576 commit 3a173db
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,22 @@
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"module": "es6",
"moduleResolution": "node",
"verbatimModuleSyntax": true,
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true,
"verbatimModuleSyntax": true,

"allowUnreachableCode": false,
"allowUnusedLabels": false,
"exactOptionalPropertyTypes": true,
"noFallthroughCasesInSwitch": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noPropertyAccessFromIndexSignature": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"skipLibCheck": true,
"strict": true
}
}

0 comments on commit 3a173db

Please sign in to comment.