Skip to content

Instantly share code, notes, and snippets.

@lasersox
Created February 4, 2020 14:54
Show Gist options
  • Save lasersox/679c8c5b49d65b66f4fcd295afaccf59 to your computer and use it in GitHub Desktop.
Save lasersox/679c8c5b49d65b66f4fcd295afaccf59 to your computer and use it in GitHub Desktop.
TSConfig Example
{
"compilerOptions": {
"target": "es5",
"sourceMap": true,
"strict": true,
"noImplicitAny": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"strictBindCallApply": true,
"strictPropertyInitialization": true,
"noImplicitThis": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"esModuleInterop": true,
"outDir": "./dist"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment