Created
June 7, 2020 11:23
-
-
Save Joe1220/aa21c7cd1262e3982f707f2b42c8a849 to your computer and use it in GitHub Desktop.
gql-yoga-test 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": { | |
| "module": "commonjs", | |
| "target": "es5", | |
| "lib": ["es6", "dom", "esnext.asynciterable"], | |
| "sourceMap": true, | |
| "allowJs": true, | |
| "moduleResolution": "node", | |
| "forceConsistentCasingInFileNames": true, | |
| "noImplicitReturns": true, | |
| "noImplicitThis": true, | |
| "noImplicitAny": false, | |
| "strictNullChecks": true, | |
| "suppressImplicitAnyIndexErrors": true, | |
| "noUnusedLocals": true, | |
| "esModuleInterop": true, | |
| "skipLibCheck": true, | |
| "experimentalDecorators": true, | |
| "emitDecoratorMetadata": true, | |
| "outDir": "./build" | |
| }, | |
| "exclude": ["node_modules", "build"], | |
| "include": ["**/*.ts", "**/*.tsx", "src/**/*.ts"] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment