-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
46 lines (46 loc) · 1.44 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
{
"version": "1.5.3",
"compilerOptions": {
"target": "es5",
"declaration": false,
"noImplicitAny": false,
"removeComments": false,
"noLib": false,
"module": "commonjs",
"outDir": "generated"
},
"scripts": {
"postbuild": "echo after building"
},
"formatCodeOptions": {
"indentSize": 4,
"tabSize": 4,
"newLineCharacter": "\n",
"convertTabsToSpaces": true,
"insertSpaceAfterCommaDelimiter": true,
"insertSpaceAfterSemicolonInForStatements": true,
"insertSpaceBeforeAndAfterBinaryOperators": true,
"insertSpaceAfterKeywordsInControlFlowStatements": true,
"insertSpaceAfterFunctionKeywordForAnonymousFunctions": false,
"insertSpaceAfterOpeningAndBeforeClosingNonemptyParenthesis": false,
"placeOpenBraceOnNewLineForFunctions": false,
"placeOpenBraceOnNewLineForControlBlocks": false
},
"filesGlob": [
"src/**/ts/*.ts",
"test/**/ts/*.ts",
"typings/*/*.d.ts"
],
"files": [
"src/ts/json-file.ts",
"test/src/ts/test-json-file.ts",
"typings/assertion-error/assertion-error.d.ts",
"typings/chai/chai.d.ts",
"typings/es6-promise/es6-promise.d.ts",
"typings/json-file/all.d.ts",
"typings/json-file/json-file.d.ts",
"typings/mocha/mocha.d.ts",
"typings/node/node.d.ts"
],
"exclude": []
}