-
Notifications
You must be signed in to change notification settings - Fork 4
/
tsconfig.json
61 lines (61 loc) · 2.17 KB
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"compilerOptions": {
"target": "es5",
"lib": ["es2016"],
"outDir": "bin",
"module": "commonjs",
"removeComments": true,
"moduleResolution": "node",
"typeRoots": [
"node_modules/@types/"
],
"types": [
"node"
]
},
"formatterOptions": {
"baseIndentSize": 0,
"indentSize": 2,
"indentStyle": "smart",
"tabSize": 2,
"newLineCharacter": "\n",
"convertTabsToSpaces": true,
"insertSpaceAfterCommaDelimiter": true,
"insertSpaceAfterSemicolonInForStatements": true,
"insertSpaceBeforeAndAfterBinaryOperators": true,
"insertSpaceAfterKeywordsInControlFlowStatements": true,
"insertSpaceAfterFunctionKeywordForAnonymousFunctions": true,
"insertSpaceAfterOpeningAndBeforeClosingNonemptyBraces": true,
"insertSpaceAfterOpeningAndBeforeClosingTemplateStringBraces": false,
"insertSpaceAfterOpeningAndBeforeClosingNonemptyBrackets": false,
"insertSpaceAfterOpeningAndBeforeClosingNonemptyParenthesis": false,
"insertSpaceAfterOpeningAndBeforeClosingJsxExpressionBraces": false,
"placeOpenBraceOnNewLineForFunctions": false,
"placeOpenBraceOnNewLineForControlBlocks": false,
"insertSpaceAfterTypeAssertion": true,
"IndentSize": 2,
"IndentStyle": "smart",
"TabSize": 2,
"NewLineCharacter": "\n",
"ConvertTabsToSpaces": true,
"InsertSpaceAfterCommaDelimiter": true,
"InsertSpaceAfterSemicolonInForStatements": true,
"InsertSpaceBeforeAndAfterBinaryOperators": true,
"InsertSpaceAfterKeywordsInControlFlowStatements": true,
"InsertSpaceAfterFunctionKeywordForAnonymousFunctions": true,
"InsertSpaceAfterOpeningAndBeforeClosingNonemptyBraces": true,
"InsertSpaceAfterOpeningAndBeforeClosingTemplateStringBraces": false,
"InsertSpaceAfterOpeningAndBeforeClosingNonemptyBrackets": false,
"InsertSpaceAfterOpeningAndBeforeClosingNonemptyParenthesis": false,
"InsertSpaceAfterOpeningAndBeforeClosingJsxExpressionBraces": false,
"PlaceOpenBraceOnNewLineForFunctions": false,
"PlaceOpenBraceOnNewLineForControlBlocks": false,
"InsertSpaceAfterTypeAssertion": true
},
"include": [
"**/*.ts"
],
"exclude": [
"node_modules"
]
}