-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathgame-tutorial.code-workspace
More file actions
124 lines (124 loc) Β· 3.62 KB
/
game-tutorial.code-workspace
File metadata and controls
124 lines (124 loc) Β· 3.62 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"folders": [
{
"name": "π¦ Game Tutorial (Root)",
"path": "."
},
{
"name": "π Stage 1 - Foundation",
"path": "./packages/stage-1"
},
{
"name": "π Stage 2 - Enhanced Features",
"path": "./packages/stage-2"
},
{
"name": "π Stage 3 - Advanced Gameplay",
"path": "./packages/stage-3"
},
{
"name": "π Stage 4 - Database Integration",
"path": "./packages/stage-4"
},
{
"name": "π Stage 1 Starter",
"path": "./packages/stage-1-starter"
},
{
"name": "π Stage 2 Starter",
"path": "./packages/stage-2-starter"
},
{
"name": "π Stage 3 Starter",
"path": "./packages/stage-3-starter"
},
{
"name": "π Stage 4 Starter",
"path": "./packages/stage-4-starter"
}
],
"settings": {
"deno.enable": true,
"deno.unstable": false,
"deno.config": "./deno.json",
"typescript.preferences.includePackageJsonAutoImports": "off",
"files.exclude": {
"**/deno.lock": true,
"game-tutorial-stage-*": true
}
},
"extensions": {
"recommendations": [
"denoland.vscode-deno"
]
},
"tasks": {
"version": "2.0.0",
"tasks": [
{
"label": "π Dev: Stage 1",
"type": "shell",
"command": "deno",
"args": ["task", "dev:stage1"],
"group": "build",
"problemMatcher": [],
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "new",
"showReuseMessage": true,
"clear": false
}
},
{
"label": "π Dev: Stage 2",
"type": "shell",
"command": "deno",
"args": ["task", "dev:stage2"],
"group": "build",
"problemMatcher": [],
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "new",
"showReuseMessage": true,
"clear": false
}
},
{
"label": "π Dev: Stage 3",
"type": "shell",
"command": "deno",
"args": ["task", "dev:stage3"],
"group": "build",
"problemMatcher": [],
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "new",
"showReuseMessage": true,
"clear": false
}
},
{
"label": "π Dev: Stage 4",
"type": "shell",
"command": "deno",
"args": ["task", "dev:stage4"],
"group": "build",
"problemMatcher": [],
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "new",
"showReuseMessage": true,
"clear": false
}
}
]
}
}