-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathtsconfig.json
83 lines (83 loc) · 2.72 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
{
"compilerOptions": {
"baseUrl": "",
"target": "es5",
"module": "es2015",
"moduleResolution": "node",
"declaration": true,
"noImplicitAny": false,
"sourceMap": true,
"mapRoot": "",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"outDir": "./build",
"rootDir": "./src/app",
"skipLibCheck": true,
"typeRoots": [
"./node_modules/@types"
],
"types": [
"node",
"jasmine"
],
"lib": [
"dom",
"es2015"
]
},
"compileOnSave": false,
"buildOnSave": false,
"awesomeTypescriptLoaderOptions": {
"forkChecker": true,
"useWebpackText": true
},
"angularCompilerOptions": {
"genDir": ".",
"entryModule": "src/app/modules/main.module#MainModule"
},
"filesGlob": [
"**/*.ts",
"!**/*.spec.ts",
"!node_modules/**"
],
"atom": {
"rewriteTsconfig": true
},
"files": [
"src/app/components/add-item/add-item.component.ts",
"src/app/components/app.component.ts",
"src/app/components/item-list/item-list.component.ts",
"src/app/components/sort-pick/sort-pick.component.ts",
"src/app/components/step-list/step-counter/step-counter.component.ts",
"src/app/components/step-list/step-item-list/step-item-list.component.ts",
"src/app/components/step-list/step-list.component.ts",
"src/app/components/step-list/step-list.module.ts",
"src/app/components/step-list/step/step.component.ts",
"src/app/custom-typings.d.ts",
"src/app/db.ts",
"src/app/main.ts",
"src/app/models/sort-type.model.ts",
"src/app/modules/main.module.ts",
"src/app/polyfill.ts",
"src/app/rxjs.imports.ts",
"src/app/services/sorting-service.ts",
"src/app/store/app.actions.ts",
"src/app/store/app.effects.ts",
"src/app/store/app.selectors.ts",
"src/app/store/app.store.ts",
"src/app/store/index.ts",
"src/app/store/item-list/item-list.actions.ts",
"src/app/store/item-list/item-list.effects.ts",
"src/app/store/item-list/item-list.reducer.ts",
"src/app/store/item-list/item-list.selectors.ts",
"src/app/store/meta/exceptions-handler.meta-reducer.ts",
"src/app/store/step-list/step-list.actions.ts",
"src/app/store/step-list/step-list.reducer.ts",
"src/app/store/step-list/step-list.selectors.ts",
"src/app/store/utils/index.ts",
"src/app/store/utils/type.ts",
"src/app/style.ts",
"src/app/test.ts",
"src/app/vendor.ts"
]
}