fork of hey-api/openapi-ts because I need some additional things
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at feat/use-query-options 28 lines 696 B view raw
1{ 2 "version": "0.2.0", 3 "configurations": [ 4 { 5 "type": "node", 6 "request": "attach", 7 "name": "Attach", 8 "port": 9229, 9 "skipFiles": ["<node_internals>/**"] 10 }, 11 { 12 "name": "TS: Debug", 13 "type": "node", 14 "request": "launch", 15 "preLaunchTask": "build:openapi-ts", 16 "program": "${workspaceFolder}/packages/openapi-ts/dist/run.mjs", 17 "cwd": "${workspaceFolder}/dev" 18 }, 19 { 20 "name": "Python: Debug", 21 "type": "node", 22 "request": "launch", 23 "preLaunchTask": "build:openapi-python", 24 "program": "${workspaceFolder}/packages/openapi-python/dist/run.mjs", 25 "cwd": "${workspaceFolder}/dev" 26 } 27 ] 28}