-
Notifications
You must be signed in to change notification settings - Fork 53
/
tsconfig.json
46 lines (46 loc) · 1.69 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
{
"compilerOptions": {
"target": "es5",
"noImplicitAny": false,
"removeComments": false,
"preserveConstEnums": false,
"sourceMap": true,
"experimentalDecorators": true,
"outDir": "web/src/entitas"
},
"files": [
"lib/entitas/utils/UUID.ts",
"lib/entitas/utils/ImmutableBag.ts",
"lib/entitas/utils/Bag.ts",
"lib/entitas/utils/Signal.ts",
"lib/entitas/utils/Stopwatch.ts",
"lib/entitas/interfaces/IComponent.ts",
"lib/entitas/interfaces/IMatcher.ts",
"lib/entitas/interfaces/ISystem.ts",
"lib/entitas/interfaces/IExecuteSystem.ts",
"lib/entitas/interfaces/IInitializeSystem.ts",
"lib/entitas/interfaces/IReactiveSystem.ts",
"lib/entitas/exceptions/Exception.ts",
"lib/entitas/exceptions/EntityAlreadyHasComponentException.ts",
"lib/entitas/exceptions/EntityDoesNotHaveComponentException.ts",
"lib/entitas/exceptions/EntityIsAlreadyReleasedException.ts",
"lib/entitas/exceptions/EntityIsNotDestroyedException.ts",
"lib/entitas/exceptions/EntityIsNotEnabledException.ts",
"lib/entitas/exceptions/GroupObserverException.ts",
"lib/entitas/exceptions/MatcherException.ts",
"lib/entitas/exceptions/PoolDoesNotContainEntityException.ts",
"lib/entitas/exceptions/SingleEntityException.ts",
"lib/entitas/TriggerOnEvent.ts",
"lib/entitas/Matcher.ts",
"lib/entitas/Entity.ts",
"lib/entitas/Group.ts",
"lib/entitas/GroupObserver.ts",
"lib/entitas/Pool.ts",
"lib/entitas/ReactiveSystem.ts",
"lib/entitas/Systems.ts",
"lib/entitas/viewer/EntityBehavior.ts",
"lib/entitas/viewer/PoolObserver.ts",
"lib/entitas/viewer/SystemObserver.ts",
"lib/entitas/viewer/VisualDebugging.ts"
]
}