-
Notifications
You must be signed in to change notification settings - Fork 2
/
tsconfig.json
34 lines (34 loc) · 994 Bytes
/
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
{
"lintOptions": {
"rules": {}
},
"compilerOptions": {
"module": "commonjs",
"target": "es5",
"noImplicitAny": true,
"removeComments": true,
"preserveConstEnums": true,
"sourceMap": false,
"watch": false
},
"filesGlob": [
"app/**/*.ts",
"test/**/*.ts",
"typings/browser.d.ts"
],
"files": [
"app/src/models/models.d.ts",
"typings/browser.d.ts",
"app/src/app/app.ts",
"app/src/injectables/formatter/formatter.ts",
"app/src/main.ts",
"app/src/repositories/base/base.repo.ts",
"app/src/repositories/post/post.repo.ts",
"app/src/services/base/base.svc.ts",
"app/src/services/post/post.svc.ts",
"app/src/viewcontrols/base/base.vc.ts",
"app/src/viewcontrols/home/home.vc.ts",
"app/src/viewcontrols/newpost/newpost.vc.ts",
"app/src/viewcontrols/singlepost/singlepost.vc.ts"
]
}