Skip to content

Commit

Permalink
Replace jsconfig.json by tsconfig.json to fix TS errors
Browse files Browse the repository at this point in the history
  • Loading branch information
jens-duttke committed Aug 11, 2023
1 parent ba42f04 commit 2fff60a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"url": "https://github.com/jens-duttke/check-outdated.git"
},
"scripts": {
"lint": "lint tsc --tsconfig=jsconfig.json ts md audit",
"lint": "lint tsc ts md audit",
"test": "node tests",
"screenshot-demo": "node demo",
"publish:major": "npm version major",
Expand Down
4 changes: 1 addition & 3 deletions jsconfig.json → tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
"allowUnusedLabels": false,
"alwaysStrict": true,
"forceConsistentCasingInFileNames": true,
"keyofStringsOnly": true,
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"noImplicitReturns": true,
Expand All @@ -31,8 +30,7 @@
"strictFunctionTypes": true,
"strictNullChecks": true,
"strictPropertyInitialization": true,
"suppressExcessPropertyErrors": false,
"suppressImplicitAnyIndexErrors": true
"suppressExcessPropertyErrors": false
},
"include": [
"./*.js",
Expand Down

0 comments on commit 2fff60a

Please sign in to comment.