Created
December 15, 2019 00:03
-
-
Save rbiggs/9ea5eb1a8ad63fa8222656d8896a6822 to your computer and use it in GitHub Desktop.
tsconfig.json
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
{ | |
"compilerOptions": { | |
"target": "es6", | |
"allowJs": true, | |
"checkJs": true, | |
"moduleResolution": "node", | |
"alwaysStrict": true, | |
"strictNullChecks": false, | |
"emitDeclarationOnly": true, | |
"declaration": true, | |
"outDir": "types", | |
"removeComments": false | |
}, | |
"files": [ | |
"src/index.js" | |
], | |
"exclude": [ | |
"__tests__", | |
"node_modules", | |
"types" | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment