Skip to content

Instantly share code, notes, and snippets.

@matthewhartman
Created March 2, 2020 09:11
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 matthewhartman/dbe2fa6fca882cde66e15f4a8a5f690a to your computer and use it in GitHub Desktop.
Save matthewhartman/dbe2fa6fca882cde66e15f4a8a5f690a to your computer and use it in GitHub Desktop.
Typescript Configuration
{
"compilerOptions": {
"target": "es5",
"module": "esnext",
"experimentalDecorators": true,
"emitDecoratorMetadata": false,
"moduleResolution": "node",
"stripInternal": true,
"declaration": false,
"allowSyntheticDefaultImports": true,
"strict": true,
"strictPropertyInitialization": false,
"suppressImplicitAnyIndexErrors": true,
"lib": ["es2015", "dom"]
},
"include": ["src", "test"],
"exclude" : []
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment