Skip to content

Instantly share code, notes, and snippets.

@cchamberlain
Created July 17, 2018 20:19
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 cchamberlain/a7ffebd3b501334f0892de49a4d97fb9 to your computer and use it in GitHub Desktop.
Save cchamberlain/a7ffebd3b501334f0892de49a4d97fb9 to your computer and use it in GitHub Desktop.
tsconfig
{
"compilerOptions": {
"experimentalDecorators": true,
"module": "commonjs",
"moduleResolution": "node",
"target": "ES5",
"jsx": "react",
"noImplicitReturns": true,
"noStrictGenericChecks": true,
"sourceMap": true,
"allowSyntheticDefaultImports": false,
"importHelpers": true,
"typeRoots": [ "./node_modules/@types" ],
"lib": [
"es2015",
"es2016",
"es2017.object",
"dom",
"scripthost",
"esnext.asynciterable"
],
"plugins": [
{ "name": "typescript-styled-plugin" }
]
},
"include": [
"Entry/**/*",
"Views/**/*"
],
"exclude": [
"node_modules",
"**/__tests__",
"App_Data",
"App_Start",
"bin"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment