mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-09-10 08:37:24 +08:00
Allow to deep-link to a specific config setting. Users in discord often ask how to enable a specific setting. Instead of guiding them manually to the correct settings we can use a deep-link: https://github.com/user-attachments/assets/90b99660-13ae-49bf-8ff2-c5e6da290070 Added a link next to the group on mouse over to copy the deep link to the clipboard:  --------- Co-authored-by: Miodec <jack@monkeytype.com>
82 lines
1.8 KiB
Text
82 lines
1.8 KiB
Text
{
|
|
"folders": [
|
|
{
|
|
"name": "backend",
|
|
"path": "backend"
|
|
},
|
|
{
|
|
"name": "frontend",
|
|
"path": "frontend"
|
|
},
|
|
{
|
|
"name": "packages",
|
|
"path": "packages"
|
|
},
|
|
{
|
|
"name": "root",
|
|
"path": "./"
|
|
}
|
|
],
|
|
"settings": {
|
|
"files.exclude": {
|
|
"frontend": true,
|
|
"backend": true,
|
|
"packages": true
|
|
},
|
|
"search.exclude": {
|
|
//defaults
|
|
"**/node_modules": true,
|
|
"**/bower_components": true,
|
|
"**/*.code-search": true,
|
|
//exclude generated directories
|
|
"**/build/**": true,
|
|
"**/dist/**": true,
|
|
"**/public/**": true,
|
|
"**/coverage/**": true,
|
|
"**/logs/**": true,
|
|
"**/.firebase/**": true,
|
|
"**/.turbo/**": true
|
|
},
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
"editor.formatOnSaveMode": "file",
|
|
"editor.formatOnSave": true,
|
|
"testing.automaticallyOpenTestResults": "neverOpen",
|
|
"[json]": {
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
|
},
|
|
"[html]": {
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
|
}
|
|
},
|
|
|
|
"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": []
|
|
},
|
|
"extensions": {
|
|
"recommendations": [
|
|
"esbenp.prettier-vscode",
|
|
"vitest.explorer",
|
|
"huntertran.auto-markdown-toc",
|
|
"dbaeumer.vscode-eslint",
|
|
"oxc.oxc-vscode"
|
|
]
|
|
}
|
|
}
|