Skip to content

Instantly share code, notes, and snippets.

@frivolta
Created January 8, 2020 22:21
Show Gist options
  • Save frivolta/3bb09c9ae32644f61264c21d0dc9d746 to your computer and use it in GitHub Desktop.
Save frivolta/3bb09c9ae32644f61264c21d0dc9d746 to your computer and use it in GitHub Desktop.
TsConfig Boilerplate
{
"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": true,
"esModuleInterop": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"resolveJsonModule": true,
"baseUrl": "."
},
"exclude": ["node_modules"],
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment