Created
November 17, 2019 16:17
-
-
Save kvedantmahajan/68446d6b87ac5ffdc5c56df567f9e973 to your computer and use it in GitHub Desktop.
tsconfig.json ui-components
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"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