Last active
November 10, 2019 16:45
-
-
Save eladb/85502ca35543eda6c0d728358f3d3568 to your computer and use it in GitHub Desktop.
my tsconfig.json
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": { | |
"alwaysStrict": true, | |
"charset": "utf8", | |
"declaration": true, | |
"experimentalDecorators": true, | |
"inlineSourceMap": true, | |
"inlineSources": true, | |
"lib": [ | |
"es2016" | |
], | |
"module": "CommonJS", | |
"noEmitOnError": true, | |
"noFallthroughCasesInSwitch": true, | |
"noImplicitAny": true, | |
"noImplicitReturns": true, | |
"noImplicitThis": true, | |
"noUnusedLocals": true, | |
"noUnusedParameters": true, | |
"resolveJsonModule": true, | |
"strict": true, | |
"strictNullChecks": true, | |
"strictPropertyInitialization": true, | |
"stripInternal": true, | |
"target": "ES2017" | |
}, | |
"include": [ | |
"**/*.ts" | |
], | |
"exclude": [ | |
"node_modules" | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment