Advertisement
Guest User

tsconfig kataras

a guest
Nov 17th, 2015
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.21 KB | None | 0 0
  1. {
  2. "formatCodeOptions": {
  3. "indentSize": 4,
  4. "tabSize": 4,
  5. "newLineCharacter": "\r\n",
  6. "convertTabsToSpaces": true,
  7. "insertSpaceAfterCommaDelimiter": true,
  8. "insertSpaceAfterSemicolonInForStatements": true,
  9. "insertSpaceBeforeAndAfterBinaryOperators": true,
  10. "insertSpaceAfterKeywordsInControlFlowStatements": true,
  11. "insertSpaceAfterFunctionKeywordForAnonymousFunctions": false,
  12. "insertSpaceAfterOpeningAndBeforeClosingNonemptyParenthesis": false,
  13. "placeOpenBraceOnNewLineForFunctions": false,
  14. "placeOpenBraceOnNewLineForControlBlocks": false
  15. },
  16. "buildOnSave": false,
  17. "compileOnSave": false,
  18. "scripts":{},
  19. "filesGlob" : [
  20. "./src/**/*.ts",
  21. "./typings/**/*.d.ts",
  22. "!node_modules/**"
  23. ],
  24. "compilerOptions": {
  25. "noImplicitAny": false,
  26. "removeComments": true,
  27. "preserveConstEnums": true,
  28. "jsx": "react",
  29. "sourceMap": true,
  30. "target": "ES6",
  31. "noEmit": false,
  32. "experimentalDecorators": false,
  33. "charset": "UTF-8",
  34. "noLib": false,
  35. "listFiles": true,
  36. "noEmitOnError": false,
  37. "noResolve": false,
  38. "diagnostics": true,
  39. "declaration": false
  40. },
  41. "exclude": [
  42. "node_modules"
  43. ]
  44. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement