Created
September 14, 2020 14:36
-
-
Save rabelloo/c3f9f41206c820d07ce6c0fa7c644288 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
{ | |
"include": ["src/**/*"], | |
"exclude": ["src/**/*.spec.*"], | |
"compilerOptions": { | |
"outDir": "dist", | |
"rootDir": "src", | |
"module": "esnext", | |
"moduleResolution": "node", | |
"target": "es2019", | |
"esModuleInterop": true, | |
"sourceMap": true, | |
"jsx": "react", | |
"lib": ["esnext", "dom"], | |
"alwaysStrict": true, | |
"declaration": true, | |
"forceConsistentCasingInFileNames": true, | |
"noImplicitAny": true, | |
"noUnusedLocals": true, | |
"noUnusedParameters": true, | |
"skipLibCheck": false, | |
"strictNullChecks": true | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment