Created
June 7, 2020 12:09
-
-
Save Joe1220/9145aeda760f571d55b95de0d2c398f6 to your computer and use it in GitHub Desktop.
edit 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
{ | |
"extends": "./tsconfig.paths.json", | |
"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