Skip to content

Commit ddb161c

Browse files
committed
AoT compiler.
1 parent 9fe223f commit ddb161c

File tree

2 files changed

+25
-8
lines changed

2 files changed

+25
-8
lines changed

package.json

+16-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ionic2-rating",
3-
"version": "0.0.11",
3+
"version": "0.0.12",
44
"author": "andrucz",
55
"license": "MIT",
66
"bugs": {
@@ -26,11 +26,23 @@
2626
"src/ionic2-rating.ts"
2727
],
2828
"dependencies": {
29-
"ionic-angular": "^2.0.0-rc.0"
3029
},
3130
"devDependencies": {
32-
"typescript": "^2.0.3",
33-
"copyfiles": "1.0.0"
31+
"typescript": "2.0.3",
32+
"copyfiles": "1.0.0",
33+
"ionic-angular": "2.0.0-rc.2",
34+
"@angular/common": "2.1.1",
35+
"@angular/core": "2.1.1",
36+
"@angular/forms": "2.1.1",
37+
"@angular/compiler": "2.1.1",
38+
"@angular/compiler-cli": "2.1.1",
39+
"@angular/http": "2.1.1",
40+
"@angular/platform-browser": "2.1.1",
41+
"@angular/platform-browser-dynamic": "2.1.1",
42+
"@angular/platform-server": "2.1.1",
43+
"reflect-metadata": "^0.1.3",
44+
"rxjs": "5.0.0-beta.12",
45+
"zone.js": "0.6.21"
3446
},
3547
"repository": {
3648
"type": "git",

tsconfig.json

+9-4
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,21 @@
11
{
22
"version": "2.0.3",
33
"compilerOptions": {
4-
"noImplicitAny": true,
5-
"target": "es5",
6-
"module": "commonjs",
4+
"allowSyntheticDefaultImports": true,
75
"emitDecoratorMetadata": true,
86
"experimentalDecorators": true,
7+
"lib": [
8+
"dom",
9+
"es2015"
10+
],
11+
"module": "es2015",
12+
"moduleResolution": "node",
13+
"target": "es5",
14+
"noImplicitAny": true,
915
"sourceMap": true,
1016
"declaration": true
1117
},
1218
"files": [
13-
"typings/index.d.ts",
1419
"src/ionic2-rating.ts",
1520
"src/module.ts",
1621
"src/index.ts"

0 commit comments

Comments
 (0)