Created
August 4, 2020 15:00
-
-
Save samtgarson/5fe42c6b4df59ac2cdaa6f37cae74cdc to your computer and use it in GitHub Desktop.
Starter Typescript Config
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": ["esnext"], | |
"allowJs": true, | |
"strict": true, | |
"strictNullChecks": true, | |
"forceConsistentCasingInFileNames": true, | |
"noEmit": true, | |
"esModuleInterop": true, | |
"module": "esnext", | |
"moduleResolution": "node", | |
"resolveJsonModule": true, | |
"isolatedModules": true, | |
"jsx": "preserve", | |
"typeRoots": ["node_modules/@types", "types/stubs"], | |
"baseUrl": ".", | |
"paths": { | |
"~/*": ["./*"] | |
} | |
}, | |
"exclude": [ | |
"node_modules" | |
], | |
"include": [ | |
"**/*.ts", | |
"**/*.tsx" | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment