Skip to content

Commit

Permalink
Add noImplicitAny option to tsconfig.json
Browse files Browse the repository at this point in the history
Enable the noImplicitAny option in the compilerOptions of tsconfig.json
to enforce strict typing and improve code quality.

Generated by gpt-3.5-turbo
  • Loading branch information
joone committed Mar 17, 2024
1 parent 3e5ce57 commit 7662f43
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"compilerOptions": {
"target": "es6",
"module": "commonjs",
"noImplicitAny": true,
"outDir": "dist",
"sourceMap": true,
"strict": true,
Expand Down

0 comments on commit 7662f43

Please sign in to comment.