-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmeem-packages.code-workspace
73 lines (73 loc) · 1.38 KB
/
meem-packages.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
{
"folders": [
{
"name": "ROOT",
"path": "./"
},
{
"name": "@meemproject/sdk",
"path": "./packages/sdk"
},
{
"name": "@meemproject/metadata",
"path": "./packages/metadata"
},
{
"name": "@meemproject/meem-contracts",
"path": "./packages/meem-contracts"
},
{
"name": "@meemproject/react",
"path": "./packages/react"
},
{
"name": "@meemproject/utils",
"path": "./packages/utils"
},
],
"settings": {
"eslint.workingDirectories": [
"packages/api",
"packages/metadata",
"packages/react",
"packages/utils",
"packages/meem-contracts"
],
"typescript.tsdk": "node_modules/typescript/lib",
"typescript.preferences.importModuleSpecifier": "relative",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"eslint.options": {
"extensions": [
".js",
".jsx",
".ts",
".tsx"
]
},
"eslint.enable": true,
"eslint.validate": [
"javascript",
"javascriptreact",
"typescript",
"typescriptreact"
],
"[javascript]": {
"editor.formatOnSave": false
},
"[javascriptreact]": {
"editor.formatOnSave": false
},
"[typescript]": {
"editor.formatOnSave": false
},
"[typescriptreact]": {
"editor.formatOnSave": false
},
"[handlebars]": {
"editor.formatOnSave": false
},
"solidity.packageDefaultDependenciesDirectory": "packages/meem-contracts/node_modules"
}
}