-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
84 lines (84 loc) · 2.79 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"version": "1.7.3",
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"declaration": false,
"noImplicitAny": true,
"suppressImplicitAnyIndexErrors": true,
"removeComments": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"noEmitOnError": false,
"preserveConstEnums": true,
"inlineSources": false,
"sourceMap": true,
"outDir": "./.tmp",
"rootDir": "./app",
"moduleResolution": "node",
"listFiles": false
},
"formatCodeOptions": {
"indentSize": 2,
"tabSize": 4,
"newLineCharacter": "\r\n",
"convertTabsToSpaces": false,
"insertSpaceAfterCommaDelimiter": true,
"insertSpaceAfterSemicolonInForStatements": true,
"insertSpaceBeforeAndAfterBinaryOperators": true,
"insertSpaceAfterKeywordsInControlFlowStatements": true,
"insertSpaceAfterFunctionKeywordForAnonymousFunctions": false,
"insertSpaceAfterOpeningAndBeforeClosingNonemptyParenthesis": false,
"placeOpenBraceOnNewLineForFunctions": false,
"placeOpenBraceOnNewLineForControlBlocks": false
},
"exclude": [
"node_modules",
"jspm_packages",
"typings/browser",
"typings/browser.d.ts"
],
"files": [
"app/core/app.ts",
"app/core/boot.ts",
"app/core/commons/add-comment/add-comment.ts",
"app/core/commons/add-post/add-post.ts",
"app/core/services/account-service/account.service.ts",
"app/core/services/connect-service/connect.service.ts",
"app/core/services/group-service/group.service.ts",
"app/core/services/login-service/login-facebook.service.ts",
"app/core/services/login-service/login-google.service.ts",
"app/core/services/login-service/login-password.service.ts",
"app/core/services/login-service/login.service.ts",
"app/core/services/services.ts",
"app/modules/actions-menu/comment-actions-menu.ts",
"app/modules/actions-menu/group-actions-menu.ts",
"app/modules/actions-menu/post-actions-menu.ts",
"app/modules/app-header/app-header.ts",
"app/modules/comment-list/comment-list.ts",
"app/modules/group-list/group-list.ts",
"app/modules/post-list/post-list.ts",
"app/modules/settings-menu/settings-menu.ts",
"app/pages/create-account/create-account.ts",
"app/pages/create-group/create-group.ts",
"app/pages/edit-account/edit-account.ts",
"app/pages/edit-group/edit-group.ts",
"app/pages/group/group.ts",
"app/pages/home/home.ts",
"app/pages/login/login.ts",
"app/pages/not-connected/not-connected.ts",
"app/pages/post/post.ts",
"app/pages/register/register.ts",
"app/pages/verify-account/verify-account.ts",
"app/pages/verify-registration/verify-registration.ts",
"app/test/sanity_test.spec.ts",
"typings/custom.d.ts",
"typings/main.d.ts",
"typings/main/ambient/es6-shim/index.d.ts",
"typings/main/ambient/jasmine/index.d.ts",
"typings/main/ambient/zone.js/index.d.ts"
],
"atom": {
"rewriteTsconfig": true
}
}