Skip to content

Instantly share code, notes, and snippets.

@icfantv
Created February 4, 2017 06:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save icfantv/65bf2efeae95d2cc4010662941263149 to your computer and use it in GitHub Desktop.
Save icfantv/65bf2efeae95d2cc4010662941263149 to your computer and use it in GitHub Desktop.
{
"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