Skip to content

Instantly share code, notes, and snippets.

@sagar290
Created September 11, 2021 05:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sagar290/a7a090808769d3a411074a28206df286 to your computer and use it in GitHub Desktop.
Save sagar290/a7a090808769d3a411074a28206df286 to your computer and use it in GitHub Desktop.
{
"compilerOptions": {
"target": "ES6",
"module": "commonjs",
"lib": ["dom", "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": true,
"esModuleInterop": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"resolveJsonModule": true,
"baseUrl": "."
},
"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