-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.json
More file actions
47 lines (47 loc) · 1.17 KB
/
tsconfig.json
File metadata and controls
47 lines (47 loc) · 1.17 KB
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
{
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"moduleResolution": "node",
"sourceMap": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"removeComments": false,
"noImplicitAny": false,
"outDir": "dist"
},
"filesGlob": [
"src/**/*.ts",
"typings/index.d.ts"
],
"atom": {
"rewriteTsconfig": true
},
"files": [
"src/app.module.ts",
"src/app/app.comp.ts",
"src/app/app.routing.ts",
"src/app/data/flot-data.ts",
"src/app/data/morris-data.ts",
"src/app/nav/nav.side.ts",
"src/app/nav/nav.top.ts",
"src/app/pages/blank.ts",
"src/app/pages/buttons.ts",
"src/app/pages/dashboard.ts",
"src/app/pages/flot.ts",
"src/app/pages/forms.ts",
"src/app/pages/grid.ts",
"src/app/pages/icons.ts",
"src/app/pages/login.ts",
"src/app/pages/morris.ts",
"src/app/pages/notifications.ts",
"src/app/pages/panels-wells.ts",
"src/app/pages/tables.ts",
"src/app/pages/typography.ts",
"src/app/util/alert/alert.comp.ts",
"src/app/util/alert/alert.service.ts",
"src/environment.ts",
"src/main.ts",
"src/rxjs-extensions.ts"
]
}