Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Angular 17 and Ivy support #57

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
/dist-ghpages
/tmp
/out-tsc
/.angular

# dependencies
/node_modules
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ and use [@LazarSoft/jsqrcode](https://github.com/LazarSoft/jsqrcode) to check fo

### usage
```bash
$ npm install --save angular2-qrscanner
$ npm install --save ngx-ivy-qrscanner
```

```typescript
Expand All @@ -21,7 +21,7 @@ import { NgQrScannerModule } from 'angular2-qrscanner';
],
providers: [],
bootstrap: [

]
})
export class AppModule { }
Expand Down
4 changes: 1 addition & 3 deletions example/polyfills.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,6 @@


/** Evergreen browsers require these. **/
// Used for reflect-metadata in JIT. If you use AOT (and only Angular decorators), you can remove.
import 'core-js/es7/reflect';


/**
Expand All @@ -57,7 +55,7 @@ import 'core-js/es7/reflect';
/***************************************************************************************************
* Zone JS is required by Angular itself.
*/
import 'zone.js/dist/zone'; // Included with Angular CLI.
import 'zone.js'; // Included with Angular CLI.



Expand Down
Loading