Created
June 26, 2016 12:48
-
-
Save jeffschwartz/ac5c9acb93c161e8e94626a05cbd7e84 to your computer and use it in GitHub Desktop.
my standard tsconfig.json configuration as of typescript v1.8.10
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": "es5", | |
| "module": "commonjs", | |
| "moduleResolution": "node", | |
| "isolatedModules": false, | |
| "jsx": "react", | |
| "experimentalDecorators": true, | |
| "emitDecoratorMetadata": true, | |
| "declaration": true, | |
| "noImplicitAny": false, | |
| "removeComments": false, | |
| "noLib": false, | |
| "preserveConstEnums": true, | |
| "suppressImplicitAnyIndexErrors": true, | |
| "sourceMap": true, | |
| "outDir": "dist" | |
| }, | |
| "exclude": [ | |
| "node_modules" | |
| ], | |
| "compileOnSave": true, | |
| "buildOnSave": false, | |
| "atom": { | |
| "rewriteTsconfig": false | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment