# ting **Repository Path**: goldsand1100/xiaoting ## Basic Information - **Project Name**: ting - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-06-01 - **Last Updated**: 2025-03-26 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # test #### 1 { "version": "0.2.0", "configurations": [ { "name": "Launch test", "request": "launch", "runtimeArgs": [ "run", "start" ], "runtimeExecutable": "npm", "skipFiles": [ "/**" ], "type": "node" } ] } #### 2 { "version": "0.2.0", "configurations": [ { "name": "Launch hi", "request": "launch", "runtimeVersion": "18", "runtimeArgs": [ "run", "dev:ios" ], "runtimeExecutable": "npm", "skipFiles": [ "/**" ], "type": "node" } ] } #### 3 { "version": "0.2.0", "configurations": [ { "name": "Debug Main Process", "type": "node", "request": "launch", "cwd": "${workspaceRoot}", "runtimeExecutable": "${workspaceRoot}/node_modules/.bin/electron-vite", "runtimeVersion": "18", "windows": { "runtimeExecutable": "${workspaceRoot}/node_modules/.bin/electron-vite.cmd" }, "runtimeArgs": ["--sourcemap"], "env": { "REMOTE_DEBUGGING_PORT": "9222" } }, { "name": "Debug Renderer Process", "port": 9222, "request": "attach", "type": "chrome", "webRoot": "${workspaceFolder}/src/renderer", "timeout": 60000, "presentation": { "hidden": true } } ], "compounds": [ { "name": "Debug All", "configurations": ["Debug Main Process", "Debug Renderer Process"], "presentation": { "order": 1 } } ] }