Skip to content

Commit 1945ab2

Browse files
committed
Updated to Angular 4.1.0
1 parent a9c1a20 commit 1945ab2

File tree

2 files changed

+47
-56
lines changed

2 files changed

+47
-56
lines changed

package.json

Lines changed: 33 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,35 @@
11
{
2-
"name": "angular2-registration-login-example",
3-
"version": "1.0.0",
4-
"repository": {
5-
"type": "git",
6-
"url": "https://github.com/cornflourblue/angular2-registration-login-example.git"
7-
},
8-
"scripts": {
9-
"start": "tsc && concurrently \"npm run tsc:w\" \"npm run lite\" ",
10-
"lite": "lite-server",
11-
"tsc": "tsc",
12-
"tsc:w": "tsc -w"
13-
},
14-
"license": "MIT",
15-
"dependencies": {
16-
"@angular/common": "~2.4.0",
17-
"@angular/compiler": "~2.4.0",
18-
"@angular/core": "~2.4.0",
19-
"@angular/forms": "~2.4.0",
20-
"@angular/http": "~2.4.0",
21-
"@angular/platform-browser": "~2.4.0",
22-
"@angular/platform-browser-dynamic": "~2.4.0",
23-
"@angular/router": "~3.4.0",
24-
"@angular/upgrade": "~2.4.0",
25-
26-
"core-js": "^2.4.1",
27-
"rxjs": "5.0.1",
28-
"systemjs": "0.19.40",
29-
"zone.js": "^0.7.4"
30-
},
31-
"devDependencies": {
32-
"concurrently": "^3.1.0",
33-
"lite-server": "^2.2.2",
34-
"typescript": "^2.0.10",
35-
36-
"@types/core-js": "0.9.36",
37-
"@types/node": "^6.0.46",
38-
"@types/jasmine": "^2.5.36"
39-
}
2+
"name": "angular2-registration-login-example",
3+
"version": "1.0.0",
4+
"repository": {
5+
"type": "git",
6+
"url": "https://github.com/cornflourblue/angular2-registration-login-example.git"
7+
},
8+
"scripts": {
9+
"start": "tsc && concurrently \"npm run tsc:w\" \"npm run lite\" ",
10+
"lite": "lite-server",
11+
"tsc": "tsc",
12+
"tsc:w": "tsc -w"
13+
},
14+
"license": "MIT",
15+
"dependencies": {
16+
"@angular/common": "^4.0.0",
17+
"@angular/compiler": "^4.0.0",
18+
"@angular/core": "^4.0.0",
19+
"@angular/forms": "^4.0.0",
20+
"@angular/http": "^4.0.0",
21+
"@angular/platform-browser": "^4.0.0",
22+
"@angular/platform-browser-dynamic": "^4.0.0",
23+
"@angular/router": "^4.0.0",
24+
"core-js": "^2.4.1",
25+
"rxjs": "^5.2.0",
26+
"systemjs": "^0.19.47",
27+
"zone.js": "^0.8.5"
28+
},
29+
"devDependencies": {
30+
"@types/node": "^6.0.60",
31+
"concurrently": "^3.1.0",
32+
"lite-server": "^2.3.0",
33+
"typescript": "^2.2.2"
34+
}
4035
}

tsconfig.json

Lines changed: 14 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,16 @@
11
{
2-
"compilerOptions": {
3-
"target": "es5",
4-
"module": "commonjs",
5-
"moduleResolution": "node",
6-
"sourceMap": true,
7-
"emitDecoratorMetadata": true,
8-
"experimentalDecorators": true,
9-
"removeComments": false,
10-
"noImplicitAny": true,
11-
"suppressImplicitAnyIndexErrors": true,
12-
"typeRoots": [
13-
"./node_modules/@types/"
14-
]
15-
},
16-
"compileOnSave": true,
17-
"exclude": [
18-
"node_modules/*"
19-
]
2+
"compilerOptions": {
3+
"emitDecoratorMetadata": true,
4+
"experimentalDecorators": true,
5+
"lib": [ "es2015", "dom" ],
6+
"module": "commonjs",
7+
"moduleResolution": "node",
8+
"noImplicitAny": true,
9+
"sourceMap": true,
10+
"suppressImplicitAnyIndexErrors": true,
11+
"target": "es5"
12+
},
13+
"exclude": [
14+
"node_modules/*"
15+
]
2016
}

0 commit comments

Comments
 (0)