Created
October 13, 2020 01:47
-
-
Save stemount/cd0d5566a0afb592beeac9bce6152913 to your computer and use it in GitHub Desktop.
TSConfig
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": "es2018", | |
"module": "commonjs", | |
"lib": [ | |
"dom", | |
"es6", | |
"es2018", | |
"esnext.asynciterable" | |
], | |
"sourceMap": true, | |
"outDir": "./dist", | |
"moduleResolution": "node", | |
"allowJs": true, | |
"declaration": false, | |
"composite": false, | |
"removeComments": true, | |
"noImplicitAny": true, | |
"strictNullChecks": true, | |
"strictFunctionTypes": true, | |
"noImplicitThis": true, | |
"noUnusedLocals": true, | |
"noUnusedParameters": true, | |
"noImplicitReturns": true, | |
"noFallthroughCasesInSwitch": true, | |
"allowSyntheticDefaultImports": false, | |
"emitDecoratorMetadata": true, | |
"experimentalDecorators": true, | |
"skipLibCheck": true, | |
"baseUrl": ".", | |
"rootDir": "./" | |
}, | |
"exclude": [ | |
"node_modules", | |
"**/*.spec.ts", | |
"**/*.test.ts" | |
], | |
"include": [ | |
"./src/**/*.tsx", | |
"./src/**/*.ts", | |
"./src/**/*.js", | |
"./*.ts" | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment