Skip to content

Commit

Permalink
AoT compiler.
Browse files Browse the repository at this point in the history
  • Loading branch information
andrucz committed Jan 3, 2017
1 parent 9fe223f commit ddb161c
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 8 deletions.
20 changes: 16 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ionic2-rating",
"version": "0.0.11",
"version": "0.0.12",
"author": "andrucz",
"license": "MIT",
"bugs": {
Expand All @@ -26,11 +26,23 @@
"src/ionic2-rating.ts"
],
"dependencies": {
"ionic-angular": "^2.0.0-rc.0"
},
"devDependencies": {
"typescript": "^2.0.3",
"copyfiles": "1.0.0"
"typescript": "2.0.3",
"copyfiles": "1.0.0",
"ionic-angular": "2.0.0-rc.2",
"@angular/common": "2.1.1",
"@angular/core": "2.1.1",
"@angular/forms": "2.1.1",
"@angular/compiler": "2.1.1",
"@angular/compiler-cli": "2.1.1",
"@angular/http": "2.1.1",
"@angular/platform-browser": "2.1.1",
"@angular/platform-browser-dynamic": "2.1.1",
"@angular/platform-server": "2.1.1",
"reflect-metadata": "^0.1.3",
"rxjs": "5.0.0-beta.12",
"zone.js": "0.6.21"
},
"repository": {
"type": "git",
Expand Down
13 changes: 9 additions & 4 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,21 @@
{
"version": "2.0.3",
"compilerOptions": {
"noImplicitAny": true,
"target": "es5",
"module": "commonjs",
"allowSyntheticDefaultImports": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"lib": [
"dom",
"es2015"
],
"module": "es2015",
"moduleResolution": "node",
"target": "es5",
"noImplicitAny": true,
"sourceMap": true,
"declaration": true
},
"files": [
"typings/index.d.ts",
"src/ionic2-rating.ts",
"src/module.ts",
"src/index.ts"
Expand Down

0 comments on commit ddb161c

Please sign in to comment.