Skip to content

Instantly share code, notes, and snippets.

@kvedantmahajan
Created November 17, 2019 16:17
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 kvedantmahajan/68446d6b87ac5ffdc5c56df567f9e973 to your computer and use it in GitHub Desktop.
Save kvedantmahajan/68446d6b87ac5ffdc5c56df567f9e973 to your computer and use it in GitHub Desktop.
tsconfig.json ui-components
{
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"declaration": true,
"outDir": "dist",
"strict": true,
"esModuleInterop": true,
"jsx": "react",
"types": [],
"forceConsistentCasingInFileNames": true,
"strictBindCallApply": true,
"strictFunctionTypes": true,
"strictNullChecks": true,
"noUnusedLocals": true,
"noImplicitReturns": true,
"sourceMap": true,
"skipLibCheck": true
},
"exclude": [
"**/*.spec.js",
"**/*.stories.tsx",
"**/*.README.md",
"__snapshots__"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment