Skip to content

Instantly share code, notes, and snippets.

@jeffschwartz
Created June 26, 2016 12:48
Show Gist options
  • Select an option

  • Save jeffschwartz/ac5c9acb93c161e8e94626a05cbd7e84 to your computer and use it in GitHub Desktop.

Select an option

Save jeffschwartz/ac5c9acb93c161e8e94626a05cbd7e84 to your computer and use it in GitHub Desktop.
my standard tsconfig.json configuration as of typescript v1.8.10
{
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"moduleResolution": "node",
"isolatedModules": false,
"jsx": "react",
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"declaration": true,
"noImplicitAny": false,
"removeComments": false,
"noLib": false,
"preserveConstEnums": true,
"suppressImplicitAnyIndexErrors": true,
"sourceMap": true,
"outDir": "dist"
},
"exclude": [
"node_modules"
],
"compileOnSave": true,
"buildOnSave": false,
"atom": {
"rewriteTsconfig": false
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment