Skip to content

Instantly share code, notes, and snippets.

@ernestofreyreg
Last active February 9, 2020 00:19
Show Gist options
  • Save ernestofreyreg/4f026bd494756ca076b5ad8fb2a10054 to your computer and use it in GitHub Desktop.
Save ernestofreyreg/4f026bd494756ca076b5ad8fb2a10054 to your computer and use it in GitHub Desktop.
{
"compilerOptions": {
"outDir": "build",
"module": "esnext",
"target": "esnext",
"lib": ["esnext", "webworker"],
"sourceMap": false,
"allowJs": false,
"importHelpers": false,
"declaration": false,
"moduleResolution": "node",
"forceConsistentCasingInFileNames": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noImplicitAny": true,
"strictNullChecks": true,
"suppressImplicitAnyIndexErrors": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"esModuleInterop": false
},
"external": ["tslib"],
"include": ["src"],
"exclude": ["node_modules", "build", "**/__tests__/**"]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment