Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
becho2 committed Jul 21, 2022
0 parents commit 13af37d
Show file tree
Hide file tree
Showing 8 changed files with 466 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
**/node_modules
1 change: 1 addition & 0 deletions ch01/hello.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
console.log('Hello world!');
1 change: 1 addition & 0 deletions ch01/hello.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
console.log('Hello world!')
342 changes: 342 additions & 0 deletions ch02-1/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 17 additions & 0 deletions ch02-1/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"name": "ch02-1",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/node": "^18.0.3",
"ts-node": "^10.8.2",
"typescript": "^4.7.4"
}
}
Empty file added ch02-1/src/index.ts
Empty file.
Empty file added ch02-1/src/utils/makePerson.ts
Empty file.
Loading

0 comments on commit 13af37d

Please sign in to comment.