Skip to content

Instantly share code, notes, and snippets.

@OtayNacef
Created March 17, 2021 23:24
Show Gist options
  • Save OtayNacef/eddc02597e4319d150b749a17cfe45a3 to your computer and use it in GitHub Desktop.
Save OtayNacef/eddc02597e4319d150b749a17cfe45a3 to your computer and use it in GitHub Desktop.
tsconfig
{
"compilerOptions": {
"module": "commonjs",
"moduleResolution": "node",
"target": "ESNext",
"removeComments": true,
"allowSyntheticDefaultImports": true,
"jsx": "react",
"allowJs": true,
"baseUrl": "src",
"esModuleInterop": true,
"resolveJsonModule": true,
"downlevelIteration": true,
"paths": {
"*": ["src/*"]
},
"lib": [
"esnext",
"dom",
"dom.iterable"
],
"sourceMap": true,
"noImplicitAny": false,
},
"exclude": ["node_modules", "build"],
"include": [
"./src",
"webpack.config.ts" ]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment