Skip to content

Instantly share code, notes, and snippets.

@webhacking
Created September 30, 2019 04:17
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 webhacking/550d632f4a7a2fb909f3adb67d3e7eff to your computer and use it in GitHub Desktop.
Save webhacking/550d632f4a7a2fb909f3adb67d3e7eff to your computer and use it in GitHub Desktop.
Fav tsconfig
{
"compilerOptions": {
"module": "commonjs",
"moduleResolution": "node",
"typeRoots": ["./node_modules/@types", "./src/@types"],
"baseUrl": "./",
"declaration": true,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"skipLibCheck": true,
"target": "es6",
"sourceMap": true,
"pretty": true,
"outDir": "./dist",
"strict": true,
"noImplicitAny": true,
"strictNullChecks": true,
"forceConsistentCasingInFileNames": true,
"allowSyntheticDefaultImports": true,
"suppressImplicitAnyIndexErrors": true,
"noUnusedLocals": true,
"incremental": true
},
"exclude": ["node_modules", "./dist"]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment