Skip to content

Instantly share code, notes, and snippets.

@baetheus
Created July 29, 2017 21:35
Show Gist options
  • Select an option

  • Save baetheus/da3218bfb0bee8a9642b6411a151a15c to your computer and use it in GitHub Desktop.

Select an option

Save baetheus/da3218bfb0bee8a9642b6411a151a15c to your computer and use it in GitHub Desktop.
tsconfig.json
{
"compilerOptions": {
"target": "ES2015",
"module": "commonjs",
"declaration": true,
"sourceMap": true,
"outDir": "./dist/",
"rootDir": "./src/",
"removeComments": true,
"strict": true,
"noImplicitAny": true,
"strictNullChecks": true,
"noImplicitThis": true,
"alwaysStrict": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"moduleResolution": "node",
"baseUrl": "types",
"typeRoots": ["types"]
},
"include": [
"src/*"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment