-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtsconfig.json
46 lines (46 loc) · 1.57 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
{
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"declaration": false,
"noImplicitAny": true,
"suppressImplicitAnyIndexErrors": false,
"removeComments": false,
"rootDir": ".",
"outDir": "ts_output_readonly_do_NOT_change_manually/",
"sourceMap": false,
"noLib": false
},
"filesGlob": [
"./**/*.ts",
"!./node_modules/**/*.ts"
],
"formatCodeOptions": {
"indentSize": 2,
"tabSize": 2,
"newLineCharacter": "\r\n",
"convertTabsToSpaces": true,
"insertSpaceAfterCommaDelimiter": true,
"insertSpaceAfterSemicolonInForStatements": true,
"insertSpaceBeforeAndAfterBinaryOperators": true,
"insertSpaceAfterKeywordsInControlFlowStatements": true,
"insertSpaceAfterFunctionKeywordForAnonymousFunctions": false,
"insertSpaceAfterOpeningAndBeforeClosingNonemptyParenthesis": false,
"placeOpenBraceOnNewLineForFunctions": false,
"placeOpenBraceOnNewLineForControlBlocks": false
},
"files": [
"./src/aiService.ts",
"./src/aiService_test.ts",
"./src/end_to_end_tests.ts",
"./src/game.ts",
"./src/gameLogic.ts",
"./src/gameLogic_test.ts",
"./typings/angular-protractor/angular-protractor.d.ts",
"./typings/angularjs/angular.d.ts",
"./typings/jasmine/jasmine.d.ts",
"./typings/jquery/jquery.d.ts",
"./typings/multiplayer-games.d.ts",
"./typings/selenium-webdriver/selenium-webdriver.d.ts"
]
}