Skip to content

Commit

Permalink
Merge pull request #11 from Die4Ever/linter-minimal
Browse files Browse the repository at this point in the history
tsconfig.json tweak warnings
  • Loading branch information
Crazycolbster committed Sep 30, 2023
2 parents 8391f1d + 929c32a commit 297bbbc
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,16 @@
"target": "ES5",
"removeComments": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"forceConsistentCasingInFileNames": false,
"noFallthroughCasesInSwitch": false,
"noImplicitAny": true,
"noImplicitOverride": true,
"noImplicitOverride": false,
"noImplicitReturns": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"strict": true,
"noImplicitThis": false,
"noUnusedLocals": false,
"noUnusedParameters": false,
"strict": false,
"noEmitOnError": false
},
"filesGlob": [
"lib/openrct2.d.ts",
Expand All @@ -27,4 +28,4 @@
"src/modules/*.ts",
"src/gui/*.ts"
]
}
}

0 comments on commit 297bbbc

Please sign in to comment.