7 changed files with 69 additions and 4 deletions
@ -1 +1,2 @@ |
|||
SESSION_SECRET=随机字符串 |
|||
HTTPS_ENABLE=on |
|||
@ -0,0 +1,2 @@ |
|||
|
|||
https://blog.csdn.net/gitblog_00813/article/details/150962609 |
|||
@ -0,0 +1,5 @@ |
|||
{ |
|||
"recommendations": [ |
|||
"oven.bun-vscode" |
|||
] |
|||
} |
|||
@ -0,0 +1,25 @@ |
|||
{ |
|||
"version": "0.2.0", |
|||
"configurations": [ |
|||
{ |
|||
"type": "bun", |
|||
"request": "launch", |
|||
"name": "Debug Bun File", |
|||
"program": "${cwd}/src/main.js", |
|||
"cwd": "${workspaceFolder}", |
|||
"env": {}, |
|||
"stopOnEntry": false, |
|||
"watchMode": false, |
|||
"noDebug": false, |
|||
"runtimeArgs": [] |
|||
}, |
|||
{ |
|||
"type": "bun", |
|||
"request": "attach", |
|||
"name": "Attach to Bun Process", |
|||
"url": "ws://localhost:6499/", |
|||
"localRoot": "${workspaceFolder}", |
|||
"remoteRoot": "/app" |
|||
} |
|||
] |
|||
} |
|||
@ -1,3 +1,35 @@ |
|||
{ |
|||
"CodeFree.index": true |
|||
"typescript.preferences.includePackageJsonAutoImports": "auto", |
|||
"javascript.preferences.includePackageJsonAutoImports": "auto", |
|||
"typescript.suggest.autoImports": true, |
|||
"javascript.suggest.autoImports": true, |
|||
"typescript.updateImportsOnFileMove.enabled": "always", |
|||
"javascript.updateImportsOnFileMove.enabled": "always", |
|||
"files.associations": { |
|||
"*.pug": "pug" |
|||
}, |
|||
"emmet.includeLanguages": { |
|||
"pug": "html" |
|||
}, |
|||
"search.exclude": { |
|||
"**/node_modules": true, |
|||
"**/dist": true, |
|||
"**/logs": true, |
|||
"**/database": true, |
|||
"**/public/uploads": true |
|||
}, |
|||
"files.exclude": { |
|||
"**/node_modules": true, |
|||
"**/dist": true, |
|||
"**/logs": true, |
|||
"**/database": true, |
|||
"**/public/uploads": true |
|||
}, |
|||
"debug.console.fontSize": 14, |
|||
"debug.console.lineHeight": 20, |
|||
"debug.inlineValues": "auto", |
|||
"debug.showBreakpointsInOverviewRuler": true, |
|||
"debug.showInlineBreakpointCandidates": true, |
|||
"bun.enable": true, |
|||
"bun.path": "bun" |
|||
} |
|||
Loading…
Reference in new issue