Skip to content

Commit e814775

Browse files
author
Your Name
committed
lesson 2
0 parents  commit e814775

File tree

5 files changed

+52
-0
lines changed

5 files changed

+52
-0
lines changed

.gitignore

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
/__build__
2+
/__server_build__
3+
/node_modules
4+
/typings
5+
/tsd_typings/
6+
npm-debug.log
7+
dist
8+
.idea
9+
.DS_Store
10+
tmp
11+
perf-logs
12+
v8.log
13+
*.js
14+
15+

favicon.ico

5.3 KB
Binary file not shown.

hello-world.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
console.log('Hello World');

index.html

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<!doctype html>
2+
<html>
3+
<head>
4+
<meta charset="utf-8">
5+
<title>The Complete Typescript Course</title>
6+
7+
<script src="./hello-world.js" ></script>
8+
9+
</head>
10+
<body>
11+
12+
</body>
13+
</html>

package.json

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"name": "complete-typescript-course",
3+
"version": "1.0.0",
4+
"description": "",
5+
"main": "index.js",
6+
"scripts": {
7+
"test": "echo \"Error: no test specified\" && exit 1"
8+
},
9+
"repository": {
10+
"type": "git",
11+
"url": "git+https://github.com/angular-university/complete-typescript-course.git"
12+
},
13+
"author": "",
14+
"license": "ISC",
15+
"bugs": {
16+
"url": "https://github.com/angular-university/complete-typescript-course/issues"
17+
},
18+
"homepage": "https://github.com/angular-university/complete-typescript-course#readme",
19+
"devDependencies": {
20+
"http-server": "^0.9.0",
21+
"typescript": "^2.0.3"
22+
}
23+
}

0 commit comments

Comments
 (0)