Created
November 22, 2020 07:39
-
-
Save kaosf/bd943cb32b97d5b234c9372f8c83f4e3 to your computer and use it in GitHub Desktop.
My initial tsconfig.json on 2020-11-22
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"compilerOptions": { | |
"strict": true, | |
"noUnusedLocals": true, | |
"noUnusedParameters": true, | |
"noImplicitReturns": true, | |
"noFallthroughCasesInSwitch": true, | |
"lib": ["es6", "dom"], | |
"module": "es6", | |
"moduleResolution": "node", | |
"sourceMap": true, | |
"target": "es5", | |
"jsx": "react" | |
}, | |
"exclude": [ | |
"node_modules" | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment