-
Notifications
You must be signed in to change notification settings - Fork 53
/
tsconfig_example.json
41 lines (41 loc) · 1.44 KB
/
tsconfig_example.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
{
"compilerOptions": {
"target": "es6",
"noImplicitAny": false,
"removeComments": false,
"preserveConstEnums": false,
"sourceMap": true,
"experimentalDecorators": true,
"outDir": "web/src/example"
},
"files": [
"example/ext/bosco.d.ts",
"example/ext/pixi.js.d.ts",
"example/ext/example.d.ts",
"example/ext/EZGUI.d.ts",
"example/ext/Tween.d.ts",
"example/src/prolog.ts",
"example/src/generatedComponents.ts",
"example/src/systems/AddViewSystem.ts",
"example/src/systems/CollisionSystem.ts",
"example/src/systems/ColorAnimationSystem.ts",
"example/src/systems/EntitySpawningTimerSystem.ts",
"example/src/systems/ExpiringSystem.ts",
"example/src/systems/HealthRenderSystem.ts",
"example/src/systems/HudRenderSystem.ts",
"example/src/systems/MovementSystem.ts",
"example/src/systems/ParallaxStarRepeatingSystem.ts",
"example/src/systems/PlayerInputSystem.ts",
"example/src/systems/RemoveOffscreenShipsSystem.ts",
"example/src/systems/ScaleAnimationSystem.ts",
"example/src/systems/SoundEffectSystem.ts",
"example/src/systems/SpriteRenderSystem.ts",
"example/src/controllers/GameController.ts",
"example/src/controllers/MenuController.ts",
"example/src/controllers/InputController.ts",
"example/src/controllers/ScoreLabelController.ts",
"example/src/systems/DestroySystem.ts",
"example/src/extensions/Pool.ts",
"example/src/main.ts"
]
}