Skip to content

Instantly share code, notes, and snippets.

@peter
Created October 12, 2017 09:23
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 peter/a8b8dad836b4099757ed8860b2edac70 to your computer and use it in GitHub Desktop.
Save peter/a8b8dad836b4099757ed8860b2edac70 to your computer and use it in GitHub Desktop.
TypeScript compiler options
{
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"moduleResolution": "node",
"sourceMap": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"lib": [ "es2015", "dom" ],
"noImplicitAny": true,
"suppressImplicitAnyIndexErrors": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"strictNullChecks": true,
"skipLibCheck": true
},
"exclude": [
"node_modules/*",
"**/*-aot.ts"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment