-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.json
53 lines (53 loc) · 1.33 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
45
46
47
48
49
50
51
52
53
{
"compilerOptions": {
"target": "es5",
"module": "system",
"declaration": false,
"noImplicitAny": false,
"removeComments": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"noEmitHelpers": false,
"sourceMap": false,
"outDir": "js"
},
"filesGlob": [
"./**/*.ts",
"!./jspm_packages/**/*.ts",
"!./node_modules/**/*.ts"
],
"compileOnSave": true,
"buildOnSave": true,
"atom": {
"rewriteTsconfig": true
},
"files": [
"./app/gameobjects/background.ts",
"./app/gameobjects/gui.ts",
"./app/gameobjects/menu.ts",
"./app/gameobjects/note.ts",
"./app/gameobjects/notemanager.ts",
"./app/gameobjects/noteMgr.ts",
"./app/lib/core.ts",
"./app/lib/core/gameobject.ts",
"./app/lib/core/renderer.ts",
"./app/lib/core/scene.ts",
"./app/lib/core/scenemanager.ts",
"./app/lib/engine.ts",
"./app/lib/input.ts",
"./app/lib/input/keyboard.ts",
"./app/lib/input/mouse.ts",
"./app/lib/input/touch.ts",
"./app/lib/math.ts",
"./app/lib/math/easing.ts",
"./app/lib/math/mathex.ts",
"./app/lib/midi/mic.ts",
"./app/lib/midi/midi.ts",
"./app/lib/time.ts",
"./app/lib/time/clock.ts",
"./app/lib/time/timer.ts",
"./app/main.ts",
"./app/sessionmanager.ts",
"./typings/threejs/three.d.ts"
]
}