mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2024-11-10 08:55:37 +08:00
8f4d291fcf
This reverts commit 4c9e949f10
.
64 lines
1.3 KiB
Text
64 lines
1.3 KiB
Text
{
|
|
"folders": [
|
|
{
|
|
"name": "backend",
|
|
"path": "backend"
|
|
},
|
|
{
|
|
"name": "frontend",
|
|
"path": "frontend"
|
|
},
|
|
{
|
|
"name": "shared-types",
|
|
"path": "shared-types"
|
|
},
|
|
{
|
|
"name": "root",
|
|
"path": "./"
|
|
}
|
|
],
|
|
"settings": {
|
|
"files.exclude": {
|
|
"frontend": true,
|
|
"backend": true,
|
|
"shared-types": true
|
|
},
|
|
"search.exclude": {
|
|
//defaults
|
|
"**/node_modules": true,
|
|
"**/bower_components": true,
|
|
"**/*.code-search": true,
|
|
//exclude generated directories
|
|
"**/build/**": true,
|
|
"**/dist/**": true,
|
|
"**/public/**": true,
|
|
"**/coverage/**": true
|
|
},
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
"editor.formatOnSaveMode": "file",
|
|
"editor.formatOnSave": true,
|
|
"testing.openTesting": "neverOpen"
|
|
},
|
|
|
|
"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": []
|
|
}
|
|
}
|