Skip to content

Instantly share code, notes, and snippets.

@coderinblack08
Created August 8, 2020 00:27
Show Gist options
  • Save coderinblack08/dc5eb512ad87d845c9100fd6fa1ad486 to your computer and use it in GitHub Desktop.
Save coderinblack08/dc5eb512ad87d845c9100fd6fa1ad486 to your computer and use it in GitHub Desktop.
{
"compilerOptions": {
"target": "es6",
"module": "commonjs",
"lib": ["dom", "es6", "es2017", "esnext.asynciterable"],
"sourceMap": true,
"outDir": "./dist",
"moduleResolution": "node",
"removeComments": true,
"noImplicitAny": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"allowSyntheticDefaultImports": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true
},
"exclude": ["node_modules"],
"include": ["./src/**/*.tsx", "./src/**/*.ts"]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment