Created
January 16, 2021 23:51
-
-
Save glaucofox/ad577cd70f942303734a1d48725274c1 to your computer and use it in GitHub Desktop.
TypeScript Config JSON file
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": { | |
| "target": "es5", | |
| "lib": [ | |
| "dom", | |
| "dom.iterable", | |
| "esnext" | |
| ], | |
| "esModuleInterop": true, | |
| "module": "esnext", | |
| "moduleResolution": "node", | |
| "jsx": "react", | |
| "rootDir": "src", | |
| "baseUrl": "src", | |
| "allowJs": true, | |
| "allowSyntheticDefaultImports": true, | |
| "strict": true, | |
| "forceConsistentCasingInFileNames": true, | |
| "resolveJsonModule": true, | |
| "isolatedModules": true, | |
| "noEmit": true | |
| }, | |
| "include": [ | |
| "src" | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment