Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
node_modules/*
.vscode/*
26 changes: 1 addition & 25 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,30 +1,6 @@
# LeetCode Solutions in TypeScript

- 🏃‍♀️ Enough small time and space complexity (not "minimum" because of no micro optimization)
- 💯 100% TypeScript
- 💯 Runs on [Deno](https://deno.land) (written in TypeScript)
- ✅ Fully tested
- 🗣 With helpful comments

# Debugging on VSCode

Install [📦ts-node](https://github.com/TypeStrong/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".
4 changes: 0 additions & 4 deletions jest.config.js

This file was deleted.

Loading