-
Notifications
You must be signed in to change notification settings - Fork 1
/
wfp-dmp.code-workspace
105 lines (105 loc) · 2.6 KB
/
wfp-dmp.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
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
{
"settings": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true,
"source.fixAll.stylelint": true
},
"stylelint.validate": ["typescript", "typescriptreact"],
"stylelint.customSyntax": "@stylelint/postcss-css-in-js",
"search.exclude": {
"pnpm-lock.yaml": true
},
"files.exclude": {
"**/coverage": true,
"**/node_modules": true,
"**/.docusaurus": true,
"**/build": true,
"**/dist": true,
"**/.turbo": true,
"**/.next": true,
"**/.swc": true,
"**/.eslintcache": true,
"**/tsconfig.tsbuildinfo": true
},
"[dotenv][ignore][properties][shellscript]": {
"editor.defaultFormatter": "foxundermoon.shell-format"
},
"[html][javascript][json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[markdown][mdx]": {
"editor.wordWrap": "on"
},
"typescript.tsdk": "node_modules/typescript/lib",
"jest.disabledWorkspaceFolders": [
"tsconfig 🔧",
"dependency cruiser 🔧",
"eslint 🔧",
"bifrost starter root 🌈"
],
"jest.autoRun": "off",
"cSpell.words": ["SUPERADMIN"]
},
"extensions": {
"recommendations": [
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode",
"styled-components.vscode-styled-components",
"Orta.vscode-jest",
"stylelint.vscode-stylelint",
"ms-vsliveshare.vsliveshare",
"editorconfig.editorconfig",
"foxundermoon.shell-format",
"streetsidesoftware.code-spell-checker"
]
},
"launch": {
"configurations": [
{
"type": "node",
"request": "attach",
"name": "Debug: nest",
"protocol": "inspector",
"port": 9229,
"restart": true,
"skipFiles": ["<node_internals>/**"]
}
]
},
"folders": [
{
"path": "apps/backend-infrastructure",
"name": "backend infrastructure [CDK] ☁️"
},
{
"path": "apps/backend",
"name": "backend [Nest.js] 😺"
},
{
"path": "apps/frontend",
"name": "frontend [Next.js] 🔼"
},
{
"path": "packages/interfaces",
"name": "interfaces 🤝"
},
{
"path": "packages/tsconfig",
"name": "tsconfig 🔧"
},
{
"path": "packages/eslint-config-custom",
"name": "eslint 🔧"
},
{
"path": "packages/dependency-cruiser-config-custom",
"name": "dependency cruiser 🔧"
},
{
"path": ".",
"name": "bifrost starter root 🌈"
}
]
}