-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
43 lines (39 loc) · 1.5 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
{
"rootDir": ".",
"compilerOptions": {
"target": "es5",
"module": "none",
"lib": ["dom", "esnext"],
"sourceMap": false,
"outFile": "quibbles.js",
},
"files": [
"src/bga/Framework.d.ts",
"src/bga/Counter.d.ts",
"src/bga/Define.ts",
"src/Quibbles.d.ts",
"node_modules/bga-zoom/src/zoom-manager.ts",
"node_modules/bga-animations/src/animations.ts",
"node_modules/bga-animations/src/animations/attach-with-animation.ts",
"node_modules/bga-animations/src/animations/cumulated-animations.ts",
"node_modules/bga-animations/src/animations/pause-animation.ts",
"node_modules/bga-animations/src/animations/show-screen-center-animation.ts",
"node_modules/bga-animations/src/animations/slide-animation.ts",
"node_modules/bga-animations/src/animations/slide-to-animation.ts",
"node_modules/bga-animations/src/animation-manager.ts",
"node_modules/bga-animations/src/animations-utils.ts",
"node_modules/bga-cards/src/animations.ts",
"node_modules/bga-cards/src/stocks/card-stock.ts",
"node_modules/bga-cards/src/stocks/manual-position-stock.ts",
"node_modules/bga-cards/src/stocks/all-visible-deck.ts",
"node_modules/bga-cards/src/stocks/void-stock.ts",
"node_modules/bga-cards/src/stocks/deck.ts",
"node_modules/bga-cards/src/card-manager.ts",
"node_modules/bga-cards/src/sort.ts",
"src/bga/AutoZoomManager.ts",
"src/LineFitPositionStock.ts",
"src/CardsManager.ts",
"src/PlayerManager.ts",
"src/Quibbles.ts"
]
}