Skip to content

Commit bfc9695

Browse files
authored
Merge pull request #11 from Balastrong/fix/tsconfig-demo
fix: tsconfig reference the right package
2 parents d2db99e + 7264f3a commit bfc9695

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

projects/angular-redux-demo/src/app/app.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { ApplicationConfig, provideZoneChangeDetection } from '@angular/core';
2-
import { provideRedux } from 'angular-redux';
2+
import { provideRedux } from '@reduxjs/angular-redux';
33
import { store } from './store';
44

55
export const appConfig: ApplicationConfig = {

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"compileOnSave": false,
55
"compilerOptions": {
66
"paths": {
7-
"angular-redux": ["./dist/angular-redux"]
7+
"@reduxjs/angular-redux": ["./dist/angular-redux"]
88
},
99
"outDir": "./dist/out-tsc",
1010
"strict": true,

0 commit comments

Comments
 (0)