-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.json
48 lines (48 loc) · 1.41 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
{
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"sourceMap": true
},
"exclude": [
"node_modules",
"typings/main.d.ts",
"typings/main"
],
"filesGlob": [
"./src/**/*.ts",
"./test/**/*.ts",
"!./node_modules/**/*.ts",
"src/custom_typings.d.ts",
"typings/browser.d.ts"
],
"compileOnSave": false,
"buildOnSave": false,
"atom": {
"rewriteTsconfig": false
},
"files": [
"typings/browser.d.ts",
"./src/app.ts",
"./src/app/another/another.ts",
"./src/app/auth/index.ts",
"./src/app/core/chat-sidebar/chat-message/chat-message.ts",
"./src/app/core/chat-sidebar/chat-service.ts",
"./src/app/core/chat-sidebar/chat-sidebar.ts",
"./src/app/core/config.ts",
"./src/app/core/core.ts",
"./src/app/core/navbar/navbar.ts",
"./src/app/core/notifications/notification-load.ts",
"./src/app/core/notifications/notifications.ts",
"./src/app/core/pipes/pipe.ts",
"./src/app/core/sidebar/sidebar.ts",
"./src/app/core/widget/widget.ts",
"./src/app/dashboard/dashboard.ts",
"./src/app/error/error.ts",
"./src/app/login/login.ts",
"./src/main.ts",
"./src/polyfills.ts"
]
}