Skip to content

Instantly share code, notes, and snippets.

@kaosf
Created November 22, 2020 07:39
Show Gist options
  • Save kaosf/bd943cb32b97d5b234c9372f8c83f4e3 to your computer and use it in GitHub Desktop.
Save kaosf/bd943cb32b97d5b234c9372f8c83f4e3 to your computer and use it in GitHub Desktop.
My initial tsconfig.json on 2020-11-22
{
"compilerOptions": {
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"lib": ["es6", "dom"],
"module": "es6",
"moduleResolution": "node",
"sourceMap": true,
"target": "es5",
"jsx": "react"
},
"exclude": [
"node_modules"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment