Created
March 2, 2020 09:11
-
-
Save matthewhartman/dbe2fa6fca882cde66e15f4a8a5f690a to your computer and use it in GitHub Desktop.
Typescript Configuration
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", | |
"module": "esnext", | |
"experimentalDecorators": true, | |
"emitDecoratorMetadata": false, | |
"moduleResolution": "node", | |
"stripInternal": true, | |
"declaration": false, | |
"allowSyntheticDefaultImports": true, | |
"strict": true, | |
"strictPropertyInitialization": false, | |
"suppressImplicitAnyIndexErrors": true, | |
"lib": ["es2015", "dom"] | |
}, | |
"include": ["src", "test"], | |
"exclude" : [] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment