Skip to content
This repository has been archived by the owner on Mar 20, 2023. It is now read-only.

TS: Add more checks/validations into 'tsconfig.json' #710

Merged
merged 1 commit into from
Nov 4, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 13 additions & 7 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,21 @@
{
"exclude": ["integrationTests/ts/**/*"],
"compilerOptions": {
"declaration": true,
"isolatedModules": true,
"lib": ["es2018"],
"module": "commonjs",
"lib": ["es2018", "esnext.asynciterable"],
"esModuleInterop": true,
"target": "es2018",
"strict": true,
"esModuleInterop": true,
"moduleResolution": "node",
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"declaration": true
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"forceConsistentCasingInFileNames": true,
"importsNotUsedAsValues": "error",
"newLine": "LF",
"preserveConstEnums": true
}
}