-
Notifications
You must be signed in to change notification settings - Fork 12
/
tsconfig.json
37 lines (37 loc) · 1.12 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
{
"compilerOptions": {
"module": "commonjs",
"target": "es5",
"noImplicitAny": true,
"removeComments": false
},
"files": [
"lib/atpl.ts",
"test/utils_test.ts",
"test/TemplateTokenizer_test.ts",
"test/TemplateProvider_test.ts",
"test/StringReader_test.ts",
"test/RuntimeUtils_test.ts",
"test/renderFileTest.ts",
"test/fixtures_test.ts",
"test/ExpressionTokenizer_test.ts",
"test/expressionparser_test.ts",
"test/express_test.ts",
"test/express3_test.ts",
"test/app_test.ts"
],
"formatCodeOptions": {
"indentSize": 2,
"tabSize": 2,
"newLineCharacter": "\n",
"convertTabsToSpaces": false,
"insertSpaceAfterCommaDelimiter": false,
"insertSpaceAfterSemicolonInForStatements": true,
"insertSpaceBeforeAndAfterBinaryOperators": true,
"insertSpaceAfterKeywordsInControlFlowStatements": true,
"insertSpaceAfterFunctionKeywordForAnonymousFunctions": false,
"insertSpaceAfterOpeningAndBeforeClosingNonemptyParenthesis": false,
"placeOpenBraceOnNewLineForFunctions": false,
"placeOpenBraceOnNewLineForControlBlocks": false
}
}