File tree Expand file tree Collapse file tree 5 files changed +52
-0
lines changed Expand file tree Collapse file tree 5 files changed +52
-0
lines changed Original file line number Diff line number Diff line change
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
+
Original file line number Diff line number Diff line change
1
+ console . log ( 'Hello World' ) ;
Original file line number Diff line number Diff line change
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 >
Original file line number Diff line number Diff line change
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
+ }
You can’t perform that action at this time.
0 commit comments