Skip to content

Instantly share code, notes, and snippets.

@dolegi
Last active June 12, 2019 09:19
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 dolegi/646634c26795752a709b9977693df42b to your computer and use it in GitHub Desktop.
Save dolegi/646634c26795752a709b9977693df42b to your computer and use it in GitHub Desktop.
Modern tsconfig good default settings
{
"compilerOptions": {
"module": "commonjs",
"target": "es2017",
"outDir": "./build",
"esModuleInterop": true,
"resolveJsonModule": true,
"allowJs": false,
"sourceMap": true,
"strict": true,
"declaration": true
},
"include": [
"src/**/*.ts"
],
"lib": [
"es2017"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment