Skip to content

Instantly share code, notes, and snippets.

@stemount
Created October 13, 2020 01:47
Show Gist options
  • Save stemount/cd0d5566a0afb592beeac9bce6152913 to your computer and use it in GitHub Desktop.
Save stemount/cd0d5566a0afb592beeac9bce6152913 to your computer and use it in GitHub Desktop.
TSConfig
{
"compilerOptions": {
"target": "es2018",
"module": "commonjs",
"lib": [
"dom",
"es6",
"es2018",
"esnext.asynciterable"
],
"sourceMap": true,
"outDir": "./dist",
"moduleResolution": "node",
"allowJs": true,
"declaration": false,
"composite": false,
"removeComments": true,
"noImplicitAny": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"allowSyntheticDefaultImports": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"skipLibCheck": true,
"baseUrl": ".",
"rootDir": "./"
},
"exclude": [
"node_modules",
"**/*.spec.ts",
"**/*.test.ts"
],
"include": [
"./src/**/*.tsx",
"./src/**/*.ts",
"./src/**/*.js",
"./*.ts"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment