Skip to content

Commit

Permalink
refactor: update tsconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
momesana committed Sep 26, 2023
1 parent c875bea commit b460a7c
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ module.exports = {
sourceType: "module",
},
rules: {
"curly": ["error", "all"],
curly: ["error", "all"],
"no-console": [
"error",
{
Expand Down
8 changes: 8 additions & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@
"compilerOptions": {
"strict": true,
"forceConsistentCasingInFileNames": true,
"noUncheckedIndexedAccess": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noImplicitOverride": true,
"allowUnusedLabels": false,
"allowUnreachableCode": false,
"noFallthroughCasesInSwitch": true,
"skipLibCheck": true,
"outDir": "./dist/",
Expand Down

0 comments on commit b460a7c

Please sign in to comment.