1{ 2 "version": "0.2.0", 3 "configurations": [ 4 { 5 "type": "node", 6 "request": "launch", 7 "name": "Arkguard Debug", 8 "program": "--loader=ts-node/esm", 9 "args": [ 10 "./src/cli/SecHarmony.ts", 11 "${workspaceFolder}/test/test.ts", 12 "--config-path", 13 "${workspaceFolder}/test/config.json" 14 ], 15 "sourceMaps": true, 16 "smartStep": true, 17 "console": "integratedTerminal", 18 "stopOnEntry": true 19 }, 20 21 { 22 "type": "node", 23 "request": "launch", 24 "name": "Launch Program", 25 "skipFiles": [ 26 "<node_internals>/**" 27 ], 28 "program": "${workspaceFolder}/lib/ArkObfuscator.js", 29 "preLaunchTask": "tsc: build - tsconfig.json", 30 "outFiles": [ 31 "${workspaceFolder}/lib/**/*.js" 32 ] 33 } 34 ] 35}