Skip to content

Instantly share code, notes, and snippets.

@diuis
Created October 24, 2018 13:14
Show Gist options
  • Save diuis/cb684cdd8fc093df28e3977c26ca1b75 to your computer and use it in GitHub Desktop.
Save diuis/cb684cdd8fc093df28e3977c26ca1b75 to your computer and use it in GitHub Desktop.
tsconfig.json
{
"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