change files structure
This commit is contained in:
parent
3210e72b22
commit
1ed6449ac6
30 changed files with 7 additions and 7 deletions
BIN
.DS_Store
vendored
Normal file
BIN
.DS_Store
vendored
Normal file
Binary file not shown.
10
.vscode/launch.json
vendored
10
.vscode/launch.json
vendored
|
@ -9,22 +9,22 @@
|
|||
{
|
||||
"type": "node",
|
||||
"request": "launch",
|
||||
"name": "Dev",
|
||||
"name": "server-dev",
|
||||
"runtimeExecutable": "npm",
|
||||
"runtimeArgs": [
|
||||
"run-script", "dev"
|
||||
],
|
||||
"cwd": "${workspaceRoot}",
|
||||
"cwd": "${workspaceRoot}/server/",
|
||||
},
|
||||
{
|
||||
"type": "node",
|
||||
"request": "launch",
|
||||
"name": "Test watch",
|
||||
"name": "server-test-watch",
|
||||
"runtimeExecutable": "npm",
|
||||
"runtimeArgs": [
|
||||
"run-script", "watch"
|
||||
"run-script", "test:watch"
|
||||
],
|
||||
"cwd": "${workspaceRoot}",
|
||||
"cwd": "${workspaceRoot}/server/",
|
||||
}
|
||||
]
|
||||
}
|
0
.gitignore → server/.gitignore
vendored
0
.gitignore → server/.gitignore
vendored
|
@ -6,8 +6,8 @@
|
|||
"main": "index.js",
|
||||
"scripts": {
|
||||
"pretest": "tsc",
|
||||
"test": "tsc && node ./test/test.js",
|
||||
"watch": "tsc-watch --onSuccess 'node ./test/test.js'"
|
||||
"test": "node ./test/test.js",
|
||||
"test:watch": "tsc-watch --onSuccess 'node ./test/test.js'"
|
||||
},
|
||||
"author": "IDONTSUDO",
|
||||
"devDependencies": {
|
Loading…
Add table
Add a link
Reference in a new issue