Skip to content

Instantly share code, notes, and snippets.

@dennisschneider
Created June 9, 2020 10:14
Show Gist options
  • Save dennisschneider/9ab1169fb4a54de7703b8544c107e9d4 to your computer and use it in GitHub Desktop.
Save dennisschneider/9ab1169fb4a54de7703b8544c107e9d4 to your computer and use it in GitHub Desktop.
tsconfig.json
{
"compilerOptions": {
"declaration": true,
"declarationDir": "build",
"module": "esnext",
"target": "es5",
"lib": ["es6", "dom", "es2016", "es2017"],
"sourceMap": true,
"jsx": "react",
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true
},
"include": ["src/**/*"],
"exclude": [
"node_modules",
"build"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment