-
Notifications
You must be signed in to change notification settings - Fork 0
/
dojo.code-workspace
74 lines (74 loc) · 1.72 KB
/
dojo.code-workspace
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
{
"folders": [
{
"name": "📱 Dojo App",
"path": "flutter_app"
},
{
"name": "🎨 Theme",
"path": "theme"
},
{
"name": "⚛️ Widgetbook",
"path": "widgetbook"
},
{
"name": "🌪 All",
"path": "."
}
],
"settings": {
"files.exclude": {
"**.flutter-plugins**": true,
"**.iml": true,
"**.metadata": true,
"**/.dart_tool": true,
"**/.idea": true,
"**/coverage": true
},
"explorer.fileNesting.enabled": true,
"explorer.fileNesting.patterns": {
"*.graphql": "${capture}.graphql.dart",
"*.dart": "${capture}.freezed.dart, ${capture}.g.dart",
"*.yaml": "${capture}.lock"
},
"cSpell.words": ["motorizations", "Pois", "Polyline"]
},
"launch": {
"version": "0.2.0",
"configurations": [
{
"name": "📱 Dojo App debug",
"request": "launch",
"type": "dart",
"cwd": "${workspaceFolder:📱 Dojo App}",
"program": "lib/main.dart"
},
{
"name": "📱 Dojo App profile",
"request": "launch",
"type": "dart",
"cwd": "${workspaceFolder:📱 Dojo App}",
"program": "lib/main.dart",
"flutterMode": "profile"
},
{
"name": "📱 Dojo App release",
"request": "launch",
"type": "dart",
"cwd": "${workspaceFolder:📱 Dojo App}",
"program": "lib/main.dart",
"flutterMode": "release"
},
{
"name": "⚛️ Widgetbook",
"type": "dart",
"request": "launch",
"cwd": "${workspaceFolder:⚛️ Widgetbook}",
"program": "lib/widgetbook.dart",
"args": []
}
],
"compounds": []
}
}