{
   "compilerOptions": {
      "target": "es5",
      "module": "commonjs",
      "allowJs": false,
      "noImplicitAny": false,
      "removeComments": true,
      "noLib": false,
      "preserveConstEnums": true,
      "suppressImplicitAnyIndexErrors": true,
      "emitDecoratorMetadata": true,
      "experimentalDecorators": true,
      "sourceMap": true,
      "noImplicitUseStrict": true,
      "jsx": "react",
      "declaration":false,
      "outDir": "../build"
   },
   "formatCodeOptions": {
      "indentSize": 3,
      "tabSize": 3,
      "newLineCharacter": "\r\n",
      "convertTabsToSpaces": true,
      "insertSpaceAfterCommaDelimiter": true,
      "insertSpaceAfterSemicolonInForStatements": true,
      "insertSpaceBeforeAndAfterBinaryOperators": true,
      "insertSpaceAfterKeywordsInControlFlowStatements": true,
      "insertSpaceAfterFunctionKeywordForAnonymousFunctions": false,
      "insertSpaceAfterOpeningAndBeforeClosingNonemptyParenthesis": false,
      "placeOpenBraceOnNewLineForFunctions": false,
      "placeOpenBraceOnNewLineForControlBlocks": false
   },
   "buildOnSave": true,
   "compileOnSave": true,
   "filesGlob": [
      "./**/*.ts"
   ],
   "exclude": [
       "../build"
   ],
   "atom": {
      "rewriteTsconfig": false,
      "formatOnSave": true
   }
}