Created
February 4, 2017 06:30
-
-
Save icfantv/65bf2efeae95d2cc4010662941263149 to your computer and use it in GitHub Desktop.
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
{ | |
"buildOnSave": false, | |
"compileOnSave": true, | |
"compilerOptions": { | |
"allowJs": false, | |
"baseUrl": "app/scripts/modules", | |
"emitDecoratorMetadata": true, | |
"experimentalDecorators": true, | |
"lib": [ | |
"es2016", | |
"dom" | |
], | |
"moduleResolution": "node", | |
"module": "commonjs", | |
"noEmitHelpers": false, | |
"noImplicitAny": true, | |
"noImplicitReturns": true, | |
"noImplicitThis": false, // should really get to a place where we can turn this on | |
"noUnusedLocals": true, | |
"noUnusedParameters": true, | |
"outDir": "transpiled", | |
"pretty": true, | |
"removeComments": true, | |
"rootDir": ".", | |
"skipLibCheck": true, | |
"sourceMap": true, | |
"strictNullChecks": false, // should really get to a place where we can turn this on | |
"target": "es5", | |
"typeRoots": [ | |
"node_modules/@types" | |
] | |
}, | |
"exclude": [ | |
"build", | |
"node", | |
"node_modules", | |
"transpiled" | |
], | |
"include": [ | |
"app/scripts/modules/**/*.ts" | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment