Skip to content

Commit

Permalink
angular 9 support
Browse files Browse the repository at this point in the history
  • Loading branch information
troyanskiy committed Nov 18, 2019
1 parent e474b26 commit e829f20
Show file tree
Hide file tree
Showing 19 changed files with 1,093 additions and 818 deletions.
35 changes: 29 additions & 6 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"main": "src/main.ts",
"polyfills": "src/polyfills.ts",
"tsConfig": "tsconfig.app.json",
"aot": false,
"aot": true,
"assets": [
"src/favicon.ico",
"src/assets"
Expand All @@ -45,7 +45,6 @@
"sourceMap": false,
"extractCss": true,
"namedChunks": false,
"aot": true,
"extractLicenses": true,
"vendorChunk": false,
"buildOptimizer": true,
Expand All @@ -54,6 +53,10 @@
"type": "initial",
"maximumWarning": "2mb",
"maximumError": "5mb"
},
{
"type": "anyComponentStyle",
"maximumWarning": "6kb"
}
]
}
Expand Down Expand Up @@ -133,7 +136,12 @@
"tsConfig": "projects/ngx-resource/core/tsconfig.lib.json",
"project": "projects/ngx-resource/core/ng-package.json"
}
},
, "configurations": {
"production": {
"tsConfig": "projects/ngx-resource/core/tsconfig.lib.prod.json"
}
}
},
"test": {
"builder": "@angular-devkit/build-angular:karma",
"options": {
Expand Down Expand Up @@ -168,7 +176,12 @@
"tsConfig": "projects/ngx-resource/handler-ngx-http/tsconfig.lib.json",
"project": "projects/ngx-resource/handler-ngx-http/ng-package.json"
}
},
, "configurations": {
"production": {
"tsConfig": "projects/ngx-resource/handler-ngx-http/tsconfig.lib.prod.json"
}
}
},
"test": {
"builder": "@angular-devkit/build-angular:karma",
"options": {
Expand Down Expand Up @@ -203,7 +216,12 @@
"tsConfig": "projects/ngx-resource/handler-cordova-advanced-http/tsconfig.lib.json",
"project": "projects/ngx-resource/handler-cordova-advanced-http/ng-package.json"
}
},
, "configurations": {
"production": {
"tsConfig": "projects/ngx-resource/handler-cordova-advanced-http/tsconfig.lib.prod.json"
}
}
},
"test": {
"builder": "@angular-devkit/build-angular:karma",
"options": {
Expand Down Expand Up @@ -238,7 +256,12 @@
"tsConfig": "projects/ngx-resource/handler-fetch/tsconfig.lib.json",
"project": "projects/ngx-resource/handler-fetch/ng-package.json"
}
},
, "configurations": {
"production": {
"tsConfig": "projects/ngx-resource/handler-fetch/tsconfig.lib.prod.json"
}
}
},
"test": {
"builder": "@angular-devkit/build-angular:karma",
"options": {
Expand Down
Loading

0 comments on commit e829f20

Please sign in to comment.