Created
September 17, 2020 11:45
-
-
Save palcodes/917cf32d0f0fa0c057bc02d778b09102 to your computer and use it in GitHub Desktop.
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
Show hidden characters
{ | |
"compilerOptions": { | |
"target": "es6", | |
"module": "commonjs", | |
"lib": ["dom", "es6", "es2017", "esnext.asynciterable"], | |
"sourceMap": true, | |
"outDir": "./dist", | |
"moduleResolution": "node", | |
"esModuleInterop": true, | |
"removeComments": true, | |
"noImplicitAny": true, | |
"strictNullChecks": true, | |
"strictFunctionTypes": true, | |
"noImplicitThis": true, | |
"noUnusedLocals": true, | |
"noUnusedParameters": true, | |
"noImplicitReturns": true, | |
"resolveJsonModule": true, | |
"noFallthroughCasesInSwitch": true, | |
"allowSyntheticDefaultImports": false, | |
"emitDecoratorMetadata": true, | |
"experimentalDecorators": true | |
}, | |
"exclude": ["node_modules"], | |
"include": ["./src/**/*.tsx", "./src/**/*.ts"] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment