Skip to content

Commit

Permalink
chore(lint): improve good practices (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
wellwelwel authored Apr 21, 2024
1 parent 9183db1 commit 80f3b63
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,14 @@
"target": "ES6",
"module": "CommonJS",
"esModuleInterop": true,
"alwaysStrict": true,
"noUnusedLocals": false,
"isolatedModules": true,
"strict": true,
"strictFunctionTypes": false,
"noImplicitAny": true,
"sourceMap": false,
"removeComments": false,
"alwaysStrict": true,
"strictFunctionTypes": true,
"listEmittedFiles": true,
"noImplicitAny": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"isolatedModules": true,
"forceConsistentCasingInFileNames": true,
"declaration": true,
"declarationDir": "lib",
Expand Down

0 comments on commit 80f3b63

Please sign in to comment.