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 c7adf56 commit bd7e10b
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,22 @@
{
"compilerOptions": {
"target": "es6",
"module": "commonjs",
"esModuleInterop": true,
"skipLibCheck": true,
"outDir": "lib",
"forceConsistentCasingInFileNames": true,
"module": "commonjs",
"outDir": "lib",
"resolveJsonModule": true,
"skipLibCheck": true,
"target": "es6",

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

0 comments on commit bd7e10b

Please sign in to comment.