- πββοΈ Enough small time and space complexity (not "minimum" because of no micro optimization)
- π― 100% TypeScript
- β Fully tested
- π£ With helpful comments
Install π¦ts-node with --no-save
and create launch.json
like the following:
{
"version": "0.2.0",
"configurations": [
{
"name": "Run the current TypeScript file",
"type": "node",
"request": "launch",
"protocol": "inspector",
"cwd": "${workspaceRoot}",
"args": ["${relativeFile}"],
"runtimeArgs": ["--nolazy", "-r", "ts-node/register"],
"sourceMaps": true
}
]
}
Then run debug "Run the current TypeScript file".