-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject-config.json
48 lines (48 loc) · 1.04 KB
/
project-config.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
{
"meta": {
"title": "My Awesome Game",
"description": "A Phaser project template, featuring Babel and localForage."
},
"dirs": {
"dist" : "dist",
"build" : "build",
"static" : "static",
"states" : "src/scripts/app/states",
"objects" : "src/scripts/app/objects",
"plugins" : "src/scripts/app/plugins",
"partials": "src/views/partials"
},
"globs": {
"views" : "src/views/*.hbs",
"styles" : "src/styles/*.less",
"assets" : "static/**",
"scripts": "src/scripts/**/*.js"
},
"pluginOptions": {
"dev:build:scripts": {
"modules": "amd",
"moduleIds": true
},
"dist:styles": {
"keepSpecialComments": false,
"removeEmpty": true
},
"dist:appcache": {
"filename": "offline.appcache",
"cache": [
"game.min.js",
"styles.min.css"
],
"preferOnline": true,
"timestamp": true,
"network": [
"https://*",
"http://*",
"*"
],
"fallback": [
". index.html"
]
}
}
}