forked from HearthSim/Joust
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
67 lines (67 loc) · 1.98 KB
/
tsconfig.json
File metadata and controls
67 lines (67 loc) · 1.98 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"compilerOptions": {
"declaration": false,
"module": "commonjs",
"target": "es5",
"moduleResolution": "node",
"isolatedModules": false,
"jsx": "react",
"noImplicitAny": false,
"removeComments": true,
"noLib": false,
"rootDir": "ts",
"suppressImplicitAnyIndexErrors": true
},
"filesGlob": [
"ts/**/*.ts",
"ts/**/*.tsx",
"!node_modules/**"
],
"files": [
"ts/interfaces.d.ts",
"ts/run.tsx",
"ts/Entity.ts",
"ts/Player.ts",
"ts/state/GameState.ts",
"ts/state/GameStateMutator.d.ts",
"ts/state/GameStateScrubber.ts",
"ts/state/managers/HistoryGameStateManager.ts",
"ts/state/managers/SingleGameStateManager.ts",
"ts/Option.ts",
"ts/components/Application.tsx",
"ts/components/welcome/Kettle.tsx",
"ts/components/welcome/SelectDeck.tsx",
"ts/components/welcome/HSReplay.tsx",
"ts/components/EndTurnButton.tsx",
"ts/components/EntityInPlay.tsx",
"ts/components/EntityList.tsx",
"ts/components/Hero.tsx",
"ts/components/HeroPower.tsx",
"ts/components/JoustGame.tsx",
"ts/components/Minion.tsx",
"ts/components/Secret.tsx",
"ts/components/Secrets.tsx",
"ts/components/Field.tsx",
"ts/components/Hand.tsx",
"ts/components/Player.tsx",
"ts/components/Deck.tsx",
"ts/components/Card.tsx",
"ts/components/Weapon.tsx",
"ts/components/TwoPlayerGame.tsx",
"ts/state/mutators/AddEntityMutator.ts",
"ts/state/mutators/TagChangeMutator.ts",
"ts/state/mutators/ReplaceEntityMutator.ts",
"ts/state/mutators/ClearOptionsMutator.ts",
"ts/state/mutators/SetOptionsMutator.ts",
"ts/protocol/KettleTranscoder.ts",
"ts/protocol/HSReplayDecoder.ts",
"ts/protocol/TCPSocketClient.ts",
"ts/protocol/WebSocketClient.ts",
"ts/metadata/HearthstoneJSON.ts",
"ts/components/stats/Attack.tsx",
"ts/components/stats/Cost.tsx",
"ts/components/stats/Durability.tsx",
"ts/components/stats/Health.tsx"
],
"exclude": []
}