Skip to content

Commit

Permalink
chore: fix linter errors
Browse files Browse the repository at this point in the history
  • Loading branch information
brandonroberts committed Apr 12, 2023
1 parent c749721 commit 0b4f023
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
8 changes: 7 additions & 1 deletion modules/router-store/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
{
"extends": ["../../.eslintrc.json"],
"ignorePatterns": ["!**/*", "schematics-core"],
"ignorePatterns": [
"!**/*",
"schematics-core",
"data-persistence/src/public_api.ts",
"data-persistence/src/operators.ts",
"data-persistence/index.ts"
],
"overrides": [
{
"files": ["*.ts"],
Expand Down
11 changes: 11 additions & 0 deletions modules/router-store/data-persistence/tsconfig.build.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"extends": "../tsconfig.build",
"compilerOptions": {
"paths": {
"@ngrx/store": ["../../dist/packages/store"],
"@ngrx/effects": ["../../dist/packages/effects"]
}
},
"files": ["index.ts"],
"angularCompilerOptions": {}
}

0 comments on commit 0b4f023

Please sign in to comment.