Created
October 24, 2018 13:14
-
-
Save diuis/cb684cdd8fc093df28e3977c26ca1b75 to your computer and use it in GitHub Desktop.
tsconfig.json
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": { | |
"baseUrl": ".", | |
"outDir": "build/dist", | |
"module": "esnext", | |
"target": "es2017", | |
"lib": ["es7", "dom"], | |
"sourceMap": true, | |
"allowJs": false, | |
"jsx": "react", | |
"moduleResolution": "node", | |
"rootDir": "src", | |
"forceConsistentCasingInFileNames": true, | |
"noImplicitReturns": true, | |
"noImplicitThis": true, | |
"noImplicitAny": true, | |
"importHelpers": true, | |
"strictNullChecks": true, | |
"suppressImplicitAnyIndexErrors": true, | |
"noUnusedLocals": true, | |
"declaration": true, | |
"pretty": true, | |
"removeComments": true, | |
"skipLibCheck": true | |
}, | |
"exclude": [ | |
"node_modules", | |
"build", | |
"scripts", | |
"acceptance-tests", | |
"webpack", | |
"jest", | |
"src/setupTests.ts" | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment