forked from purescript-contrib/purescript-book
-
Notifications
You must be signed in to change notification settings - Fork 0
/
purescriptbook.code-workspace
70 lines (70 loc) · 1.22 KB
/
purescriptbook.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
{
"folders": [
{
"path": "."
},
{
"path": "exercises/chapter2"
},
{
"path": "exercises/chapter3"
},
{
"path": "exercises/chapter4"
},
{
"path": "exercises/chapter5"
},
{
"path": "exercises/chapter6"
},
{
"path": "exercises/chapter7"
},
{
"path": "exercises/chapter8"
},
{
"path": "exercises/chapter9"
},
{
"path": "exercises/chapter10"
},
{
"path": "exercises/chapter11"
},
{
"path": "exercises/chapter12"
},
{
"path": "exercises/chapter13"
},
{
"path": "exercises/chapter14"
}
],
"settings": {
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"exercises": true
},
"terminal.integrated.profiles.linux": {
"Nix Shell": {
"path": "nix-shell",
"icon": "terminal-linux",
},
},
"terminal.integrated.defaultProfile.linux": "Nix Shell"
},
"extensions": {
"recommendations": [
"nwolverson.ide-purescript",
"nwolverson.language-purescript",
"mvakula.vscode-purty"
]
}
}