Skip to content

Instantly share code, notes, and snippets.

@Biromain
Forked from frivolta/tsconfig.json
Created October 12, 2021 07:26
Show Gist options
  • Select an option

  • Save Biromain/ccacd6208cdd43487c6b6e8ac6b5f6da to your computer and use it in GitHub Desktop.

Select an option

Save Biromain/ccacd6208cdd43487c6b6e8ac6b5f6da 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