TSCONFIG.json for dummies!
Summary of TSCONFIG.json
When no arguments are given when using the Typescript Compiler (tsc), it will look for a tsconfig.json. The tsconfig.json consists of compiler options:
"compilerOptions": {
"module": "commonjs",
"noImplicitAny": true...
monitrr.hashnode.dev2 min read