Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 6592091

Browse files
committed
Update book title to include edition number
1 parent 6e1f45e commit 6592091

File tree

2 files changed

+12
-7
lines changed

2 files changed

+12
-7
lines changed

‎README.md‎

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Learning JavaScript Data Structures and Algorithms
22
===================================================
33

4-
Source code of **Learning JavaScript Data Structures and Algorithms** book.
4+
Source code of **Learning JavaScript Data Structures and Algorithms** (4th edition) book.
55

66
# Chapters
77

@@ -58,7 +58,13 @@ npm test
5858

5959
```
6060
cd src/01-intro
61-
node 01-hello-world.js
61+
node 01-hello-variables.js
62+
```
63+
64+
or:
65+
66+
```
67+
node src/01-intro/01-hello-variables.js
6268
```
6369

6470
## 💻 Tecnologies

‎tsconfig.json‎

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
11
{
22
"compilerOptions": {
33
"target": "ESNext",
4-
"module": "ESNext",
4+
"module": "CommonJS",
55
//"outDir": "dist",
66
"rootDir": "src",
77
// "strict": true,
8-
"esModuleInterop": true
8+
"esModuleInterop": true,
9+
"forceConsistentCasingInFileNames": true,
910
},
10-
"include": [
11-
"src/**/*.ts"
12-
],
11+
"include": ["src/**/*"],
1312
"exclude": [
1413
"node_modules"
1514
]

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /