mirror of
				https://github.com/monkeytypegame/monkeytype.git
				synced 2025-11-04 09:06:17 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			70 lines
		
	
	
	
		
			1.4 KiB
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			70 lines
		
	
	
	
		
			1.4 KiB
		
	
	
	
		
			Text
		
	
	
	
	
	
{
 | 
						|
  "folders": [
 | 
						|
    {
 | 
						|
      "name": "backend",
 | 
						|
      "path": "backend"
 | 
						|
    },
 | 
						|
    {
 | 
						|
      "name": "frontend",
 | 
						|
      "path": "frontend"
 | 
						|
    },
 | 
						|
    {
 | 
						|
      "name": "contracts",
 | 
						|
      "path": "packages/contracts"
 | 
						|
    },
 | 
						|
    {
 | 
						|
      "name": "packages",
 | 
						|
      "path": "packages"
 | 
						|
    },
 | 
						|
    {
 | 
						|
      "name": "root",
 | 
						|
      "path": "./"
 | 
						|
    }
 | 
						|
  ],
 | 
						|
  "settings": {
 | 
						|
    "files.exclude": {
 | 
						|
      "frontend": true,
 | 
						|
      "backend": true,
 | 
						|
      "packages": true,
 | 
						|
      "contracts": 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
 | 
						|
    },
 | 
						|
    "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": []
 | 
						|
  }
 | 
						|
}
 |