File tree Expand file tree Collapse file tree 2 files changed +12
-7
lines changed Expand file tree Collapse file tree 2 files changed +12
-7
lines changed Original file line number Diff line number Diff line change 11Learning 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```
6060cd 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
Original file line number Diff line number Diff line change 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 ]
You can’t perform that action at this time.
0 commit comments