-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
109 lines (109 loc) · 2.25 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"compilerOptions": {
"allowUnreachableCode": true,
"baseUrl": ".",
"declaration": true,
"experimentalDecorators": true,
"jsx": "react",
"lib": [
"es6",
"dom",
"esnext.asynciterable"
],
"module": "commonjs",
"moduleResolution": "node",
"outDir": "dist",
"paths": {
"~actions": [
"src/client/redux/redux-actions/index.ts"
],
"~client": [
"src/client/index.ts"
],
"~css-tools": [
"src/client/ui/css/index.ts"
],
"~events": [
"src/client/events/index.ts"
],
"~instrumentation": [
"src/lib/instrumentation/index.ts"
],
"~instrumentation/*": [
"src/lib/instrumentation/*"
],
"~items": [
"src/lib/items/index.ts"
],
"~items/*": [
"src/lib/items/*",
"src/lib/items/interfaces/*"
],
"~lib/*": [
"src/lib/*"
],
"~linear-algebra": [
"src/lib/math/linear-algebra/index.ts"
],
"~math": [
"src/lib/math/index.ts"
],
"~math/*": [
"src/lib/math/*"
],
"~reducers": [
"src/client/redux/redux-reducers/index.ts"
],
"~stats": [
"src/lib/math/statistics/index.ts"
],
"~store": [
"src/client/redux/redux-store.ts"
],
"~symbols": [
"src/lib/symbols/index.ts"
],
"~symbols/*": [
"src/lib/symbols/*",
"src/lib/symbols/typeguards/*"
],
"~ui": [
"src/client/ui/index.ts"
],
"~ui-cursor": [
"src/client/ui/cursor/index.ts"
],
"~ui-dungeon": [
"src/client/ui/dungeon/index.ts"
],
"~ui-intro": [
"src/client/ui/intro/index.ts"
],
"~ui-intro-menus/*": [
"src/client/ui/menu/*"
],
"~ui-misc": [
"src/client/ui/misc/index.ts"
],
"~ui-utils": [
"src/client/ui/utils/index.ts"
],
"~utils": [
"src/lib/utils/index.ts"
]
},
"rootDir": "./",
"sourceMap": true,
"strict": true,
"target": "es2017"
},
"exclude": [
"node_modules"
],
"include": [
"src/**/*.ts",
"src/**/*.tsx",
"test/**/*.ts",
"test/**/*.tsx"
]
}