-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtsconfig.json
35 lines (35 loc) · 1.21 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
{
"rootDir": ".",
"compilerOptions": {
"target": "es5",
"module": "none",
"lib": ["dom", "esnext"],
"sourceMap": false,
"outFile": "bga-cards.js",
"declaration": true,
},
"files": [
"src/framework.d.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/slide-animation.ts",
"node_modules/bga-animations/src/animations/slide-to-animation.ts",
"node_modules/bga-animations/src/animations/pause-animation.ts",
"node_modules/bga-animations/src/animations-utils.ts",
"node_modules/bga-animations/src/animation-manager.ts",
"src/animations.ts",
"src/sort.ts",
"src/stocks/card-stock.ts",
"src/stocks/deck.ts",
"src/stocks/line-stock.ts",
"src/stocks/slot-stock.ts",
"src/stocks/scrollable-stock.ts",
"src/stocks/hand-stock.ts",
"src/stocks/manual-position-stock.ts",
"src/stocks/void-stock.ts",
"src/stocks/all-visible-deck.ts",
"src/card-manager.ts",
"src/define.ts"
]
}