Skip to content

Instantly share code, notes, and snippets.

@abdus
Created May 14, 2021 13:33
Show Gist options
  • Save abdus/c498f7598eda0a70359ccbde4bf21f7f to your computer and use it in GitHub Desktop.
Save abdus/c498f7598eda0a70359ccbde4bf21f7f to your computer and use it in GitHub Desktop.
My Default TSConfig
{
"compilerOptions": {
"target": "es5",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"strict": false,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve"
},
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx"
],
"exclude": [
"node_modules"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment