tsoa-custom-decorators
Version:
Build swagger-compliant REST APIs using TypeScript and Node
27 lines • 728 B
JSON
{
"version": "0.2.0",
"configurations": [
{
"name": "Generate",
"type": "node",
"request": "launch",
"program": "${workspaceRoot}/src/cli.ts",
"stopOnEntry": false,
"args": [
"swagger"
],
"cwd": "${workspaceRoot}",
"preLaunchTask": "build",
"runtimeExecutable": null,
"runtimeArgs": [
"--nolazy"
],
"env": {
"NODE_ENV": "development"
},
"externalConsole": false,
"sourceMaps": true,
"outDir": "${workspaceRoot}/dist"
}
]
}