Skip to content

Instantly share code, notes, and snippets.

@rbiggs
Created December 15, 2019 00:03
Show Gist options
  • Save rbiggs/9ea5eb1a8ad63fa8222656d8896a6822 to your computer and use it in GitHub Desktop.
Save rbiggs/9ea5eb1a8ad63fa8222656d8896a6822 to your computer and use it in GitHub Desktop.
tsconfig.json
{
"compilerOptions": {
"target": "es6",
"allowJs": true,
"checkJs": true,
"moduleResolution": "node",
"alwaysStrict": true,
"strictNullChecks": false,
"emitDeclarationOnly": true,
"declaration": true,
"outDir": "types",
"removeComments": false
},
"files": [
"src/index.js"
],
"exclude": [
"__tests__",
"node_modules",
"types"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment