Skip to content

Commit 3988d38

Browse files
author
Kohei Asai
authored
Denosize (axross#119)
1 parent f86cd34 commit 3988d38

File tree

250 files changed

+2507
-7288
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

250 files changed

+2507
-7288
lines changed

Diff for: .gitignore

-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
node_modules/*
21
.vscode/*

Diff for: README.md

+1-25
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,6 @@
11
# LeetCode Solutions in TypeScript
22

33
- 🏃‍♀️ Enough small time and space complexity (not "minimum" because of no micro optimization)
4-
- 💯 100% TypeScript
4+
- 💯 Runs on [Deno](https://deno.land) (written in TypeScript)
55
- ✅ Fully tested
66
- 🗣 With helpful comments
7-
8-
# Debugging on VSCode
9-
10-
Install [📦ts-node](https://github.com/TypeStrong/ts-node) with `--no-save` and create `launch.json` like the following:
11-
12-
```
13-
{
14-
"version": "0.2.0",
15-
"configurations": [
16-
{
17-
"name": "Run the current TypeScript file",
18-
"type": "node",
19-
"request": "launch",
20-
"protocol": "inspector",
21-
"cwd": "${workspaceRoot}",
22-
"args": ["${relativeFile}"],
23-
"runtimeArgs": ["--nolazy", "-r", "ts-node/register"],
24-
"sourceMaps": true
25-
}
26-
]
27-
}
28-
```
29-
30-
Then run debug "Run the current TypeScript file".

Diff for: jest.config.js

-4
This file was deleted.

0 commit comments

Comments
 (0)