-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathtsconfig.json
75 lines (75 loc) · 2.03 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
{
"compilerOptions": {
"target": "es5",
"module": "esnext",
"moduleResolution": "node",
"jsx": "preserve",
"allowJs": true,
"sourceMap": true,
"noImplicitAny": true,
"noErrorTruncation": true,
"esModuleInterop": true,
"skipLibCheck": true,
"removeComments": false,
"preserveConstEnums": true,
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true,
"baseUrl": ".",
"outDir": "build/tsc",
"paths": {
"Pkg": ["package.json"],
"Src/*": ["src/*"],
"Src": ["src"],
"Res/*": ["res/*"],
"Res": ["res"],
"Test/*": ["test/*"],
"Test": ["test"],
"Img/*": ["res/img/*"],
"Img": ["res/img"],
"Mock/*": ["test/mock/*"],
"Mock": ["test/mock"],
"Config/*": ["src/config/*"],
"Config": ["src/config"],
"Utilities/*": ["src/utilities/*"],
"Utilities": ["src/utilities"],
"Services/*": ["src/services/*"],
"Services": ["src/services"],
"Site/*": ["src/site/*"],
"Site": ["src/site"],
"App/*": ["src/app/*"],
"App": ["src/app"],
"Components/*": ["src/app/components/*"],
"Components": ["src/app/components"],
"Styles/*": ["src/app/styles/*"],
"Styles": ["src/app/styles"],
"Actions/*": ["src/app/actions/*"],
"Actions": ["src/app/actions"],
"Hoc/*": ["src/app/hoc/*"],
"Hoc": ["src/app/hoc"],
"Selectors/*": ["src/app/selectors/*"],
"Selectors": ["src/app/selectors"],
"Reducers/*": ["src/app/reducers/*"],
"Reducers": ["src/app/reducers"],
"Routes/*": ["src/app/routes/*"],
"Routes": ["src/app/routes"],
"Common/*": ["src/common/*"],
"Common": ["src/common"],
"Log/*": ["src/utilities/log/*"],
"Log": ["src/utilities/log"],
"Types/*": ["src/types/*"],
"Types": ["src/types"],
"#/*": ["src/*", "./*"],
"#": ["src", "."]
},
"lib": [
"dom",
"es2015",
"es2016",
"es2017",
"esnext"
]
},
"include": [
"src"
]
}