2024-01-25 03:44:43 +08:00
|
|
|
{
|
2024-02-08 00:46:47 +08:00
|
|
|
"folders": [
|
|
|
|
{
|
|
|
|
"name": "backend",
|
|
|
|
"path": "backend"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "frontend",
|
|
|
|
"path": "frontend"
|
|
|
|
},
|
2024-07-29 17:31:14 +08:00
|
|
|
{
|
|
|
|
"name": "contracts",
|
|
|
|
"path": "packages/contracts"
|
|
|
|
},
|
2024-02-08 00:46:47 +08:00
|
|
|
{
|
2024-07-24 17:48:36 +08:00
|
|
|
"name": "packages",
|
|
|
|
"path": "packages"
|
2024-02-08 00:46:47 +08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "root",
|
2024-07-16 23:29:09 +08:00
|
|
|
"path": "./"
|
2024-02-08 00:46:47 +08:00
|
|
|
}
|
|
|
|
],
|
|
|
|
"settings": {
|
|
|
|
"files.exclude": {
|
|
|
|
"frontend": true,
|
|
|
|
"backend": true,
|
2024-07-29 17:31:14 +08:00
|
|
|
"packages": true,
|
|
|
|
"contracts": true
|
2024-02-08 00:46:47 +08:00
|
|
|
},
|
2024-02-26 19:23:50 +08:00
|
|
|
"search.exclude": {
|
|
|
|
//defaults
|
|
|
|
"**/node_modules": true,
|
|
|
|
"**/bower_components": true,
|
|
|
|
"**/*.code-search": true,
|
|
|
|
//exclude generated directories
|
|
|
|
"**/build/**": true,
|
|
|
|
"**/dist/**": true,
|
|
|
|
"**/public/**": true,
|
2024-07-22 21:08:11 +08:00
|
|
|
"**/coverage/**": true,
|
2024-08-06 07:24:32 +08:00
|
|
|
"**/logs/**": true,
|
|
|
|
"**/.firebase/**": true,
|
|
|
|
"**/.turbo/**": true
|
2024-02-26 19:23:50 +08:00
|
|
|
},
|
|
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
2024-04-08 19:48:18 +08:00
|
|
|
"editor.formatOnSaveMode": "file",
|
2024-03-12 03:29:18 +08:00
|
|
|
"editor.formatOnSave": true,
|
2024-08-23 18:13:50 +08:00
|
|
|
"testing.openTesting": "neverOpen",
|
|
|
|
"[json]": {
|
|
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
|
|
|
}
|
2024-06-17 23:52:14 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
"launch": {
|
|
|
|
"version": "0.2.0",
|
|
|
|
"configurations": [
|
|
|
|
{
|
|
|
|
"type": "node",
|
|
|
|
"request": "attach",
|
|
|
|
"name": "Debug attach backend",
|
|
|
|
"port": 9229,
|
|
|
|
"skipFiles": ["<node_internals>/**"]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Vite Debugger",
|
|
|
|
"type": "chrome",
|
|
|
|
"request": "launch",
|
|
|
|
"port": 9222,
|
|
|
|
"url": "http://localhost:3000",
|
|
|
|
"webRoot": "${workspaceFolder}/frontend/src"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"compounds": []
|
2024-02-08 00:46:47 +08:00
|
|
|
}
|
|
|
|
}
|