summary refs log tree commit diff
path: root/bundle/.vscode/launch.json
diff options
context:
space:
mode:
Diffstat (limited to 'bundle/.vscode/launch.json')
-rw-r--r--bundle/.vscode/launch.json36
1 files changed, 0 insertions, 36 deletions
diff --git a/bundle/.vscode/launch.json b/bundle/.vscode/launch.json
deleted file mode 100644
index 6e1a34b2..00000000
--- a/bundle/.vscode/launch.json
+++ /dev/null
@@ -1,36 +0,0 @@
-{

-	"version": "0.2.0",

-	"configurations": [

-		{

-			"sourceMaps": true,

-			"name": "ts-node",

-			"type": "node",

-			"request": "launch",

-			"args": [

-				"${workspaceFolder}/src/start.ts"

-			],

-			"runtimeArgs": [

-				"-r",

-				"ts-node/register"

-			],

-			"protocol": "inspector",

-			"internalConsoleOptions": "openOnSessionStart",

-			"env": {

-				"TS_NODE_PROJECT": "${workspaceFolder}/tsnode.tsconfig.json",

-				"TS_NODE_COMPILER": "typescript-cached-transpile"

-			},

-			"resolveSourceMapLocations": null, /* allow breakpoints in modules other than bundle */

-		},

-		{

-			"sourceMaps": true,

-			"resolveSourceMapLocations": null, /* allow breakpoints in modules other than bundle */

-			"type": "node",

-			"request": "launch",

-			"name": "Launch Server",

-			"program": "${workspaceFolder}/dist/bundle/src/start.js",

-			"preLaunchTask": "tsc: build - tsconfig.json",

-			"outFiles": ["${workspaceFolder}/dist/**/*.js"],

-			"envFile": "${workspaceFolder}/.env",

-		}

-	]

-}