-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
44 lines (44 loc) · 1.13 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
{
"compilerOptions": {
"module": "System",
"target": "ES2017",
"lib": ["ES2017", "DOM"],
"sourceMap": false,
"outFile": "assets/js/scripts.js",
"emitBOM": true,
"removeComments": true,
"strict": true
},
"files": [
"scripts/lib.ts",
"scripts/android.ts",
"scripts/ui/strings.ts",
"scripts/constants.ts",
"scripts/blobDownloader.ts",
"scripts/image/point.ts",
"scripts/image/polygon.ts",
"scripts/image/imageProcessing.ts",
"scripts/resource/resource.ts",
"scripts/resource/resourceStorage.ts",
"scripts/gl/modelCoordinates.ts",
"scripts/gl/textureCoordinates.ts",
"scripts/gl/texture.ts",
"scripts/gl/webGL.ts",
"scripts/ui/uiSpriteSheet.ts",
"scripts/level/levelObject.ts",
"scripts/level/level.ts",
"scripts/level/levelCache.ts",
"scripts/level/levelSpriteSheet.ts",
"scripts/ui/controlMode.ts",
"scripts/ui/fullscreen.ts",
"scripts/ui/pointerHandler.ts",
"scripts/ui/scrollContainer.ts",
"scripts/ui/modal.ts",
"scripts/view/view.ts",
"scripts/view/editorView.ts",
"scripts/view/gameView.ts",
"scripts/view/selectionView.ts",
"scripts/view/titleView.ts",
"scripts/main.ts"
]
}