Skip to content

Commit 7264f3a

Browse files
committed
fix: tsconfig reference the right package
1 parent 4ef306b commit 7264f3a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: projects/angular-redux-demo/src/app/app.config.ts

+1-1
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 = {

Diff for: tsconfig.json

+1-1
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)