Created
June 20, 2020 06:54
-
-
Save lighth7015/a47e26eb7a73914ea74eb8a39a231235 to your computer and use it in GitHub Desktop.
tsconfig.json
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
{ | |
"compilerOptions": { | |
"target": "es6", | |
"lib": [ "dom", "dom.iterable", "esnext" ], | |
"jsx": "react", | |
"jsxFactory": "React.h", | |
"module": "commonjs", | |
"moduleResolution": "node", | |
"baseUrl": "./", | |
"removeComments": false, | |
"noEmit": true, | |
"strict": true, | |
"allowJs": true, | |
"noImplicitThis": false, | |
"noImplicitAny": false, | |
"declaration": false, | |
"skipLibCheck": false, | |
"inlineSources": true, | |
"importHelpers": true, | |
"isolatedModules": false, | |
"esModuleInterop": true, | |
"downlevelIteration": true, | |
"listEmittedFiles": true, | |
"listFiles": true, | |
"emitDecoratorMetadata": true, | |
"experimentalDecorators": true, | |
"allowSyntheticDefaultImports": true, | |
"forceConsistentCasingInFileNames": true, | |
"types": [ | |
"node" | |
], | |
"typeRoots": [ | |
"@types", | |
"node_modules/@types" | |
] | |
}, | |
"include": [ | |
"./src/**/*.ts", | |
"./src/**/*.tsx" | |
], | |
"exclude": [ | |
"./src/tests/**/*" | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment