Created
November 1, 2017 00:28
-
-
Save r3b311i0n/396d7549597754fe6a87bd784b556290 to your computer and use it in GitHub Desktop.
TypeScript configuration for ESNext + React JSX.
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": { | |
"module": "es2015", | |
"moduleResolution": "node", | |
"target": "es2015", | |
"sourceMap": true, | |
"inlineSources": true, | |
"outDir": "./dist/", | |
"lib": [ | |
"dom", | |
"dom.iterable", | |
"es6", | |
"scripthost", | |
"es2016", | |
"es2017", | |
"esnext" | |
], | |
"experimentalDecorators": true, | |
"emitDecoratorMetadata": true, | |
"jsx": "react", | |
"noImplicitAny": true, | |
"strict": true, | |
"strictFunctionTypes": false, | |
"pretty": true, | |
"removeComments": true, | |
"typeRoots": [ | |
"./typings/" | |
] | |
}, | |
"include": [ | |
"./src/**/*", | |
"./test/**/*" | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment