Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,3 +90,5 @@ v8.2.1 - Fix for IE11 and older browsers
v8.2.2 - Updated dependencies due to security advisories

v14.0.0 - Supports Angular 12+ (targeting Angular 14) with partial Ivy builds. Additionally, drops support for IE11.

v16.0.0 - Package upgraded to Angular 16
28 changes: 28 additions & 0 deletions angular.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"version": 1,
"newProjectRoot": "projects",
"projects": {
"ensure": {
"root": ".",
"sourceRoot": "src",
"projectType": "library",
"prefix": "lib",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:ng-packagr",
"options": {
"tsConfig": "tsconfig.json",
"project": "ng-package.json"
},
"configurations": {
"production": {
"tsConfig": "tsconfig.json",
"project": "ng-package.json"
}
}
}
}
}
}
}
Loading