Last active
October 25, 2019 22:26
-
-
Save rbiggs/386164921c2c37316feaa30029854b3d to your computer and use it in GitHub Desktop.
tsconfig for type checking
This file contains 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
{ | |
"compilerOptions": { | |
"target": "es6", | |
"jsx": "react", | |
"allowJs": true, | |
"checkJs": true, | |
"noEmit": true, | |
"moduleResolution": "node", | |
"jsxFactory": "h" | |
}, | |
"include": [ | |
"src/js/*" | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment