Created
December 23, 2020 04:13
-
-
Save KoryNunn/74f98c855f48470f48a629686a15b612 to your computer and use it in GitHub Desktop.
Vanilla JS typechecking
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": { | |
"lib": ["es2017", "dom", "es2019.object", "dom.iterable"], | |
"allowJs": true, | |
"checkJs": true, | |
"noEmit": true, | |
"strict": false, | |
"noImplicitReturns": false, | |
"noFallthroughCasesInSwitch": true, | |
"noImplicitThis": false, | |
"esModuleInterop": true, | |
"allowSyntheticDefaultImports": true, | |
"downlevelIteration": true | |
}, | |
"include": ["./**/*"], | |
"exclude": ["./node_modules/**/*"], | |
"exclude": ["./static/**/*"] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment