Skip to content

Instantly share code, notes, and snippets.

@dumpofmemory
Created May 5, 2019 15:13
Show Gist options
  • Save dumpofmemory/95626d94c8878aa12107697ffdfc39b0 to your computer and use it in GitHub Desktop.
Save dumpofmemory/95626d94c8878aa12107697ffdfc39b0 to your computer and use it in GitHub Desktop.
{
"compilerOptions": {
"outDir": "build/dist",
"module": "esnext",
"target": "es5",
"lib": [
"es6",
"dom"
],
"plugins": [
{
"name": "typescript-tslint-plugin"
}
],
"sourceMap": true,
"allowJs": true,
"jsx": "preserve",
"moduleResolution": "node",
"rootDir": "src",
"forceConsistentCasingInFileNames": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noImplicitAny": true,
"importHelpers": true,
"strictNullChecks": true,
"suppressImplicitAnyIndexErrors": true,
"noUnusedLocals": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true
},
"exclude": [
"node_modules",
"build",
"scripts",
"acceptance-tests",
"webpack",
"jest",
"src/setupTests.ts"
],
"include": [
"src"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment