Skip to content

Commit

Permalink
Updates tsconfig.json paths property to reference new location fo…
Browse files Browse the repository at this point in the history
…r `@rules_prerender/declarative_shadow_dom`.

Refs #67.
  • Loading branch information
dgp1130 committed Feb 19, 2023
1 parent 80ed09c commit 1ad5e62
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/external/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"sourceMap": true,
"paths": {
"rules_prerender": ["../../packages/rules_prerender"],
"@rules_prerender/declarative_shadow_dom": ["../../packages/rules_prerender/declarative_shadow_dom"],
"@rules_prerender/declarative_shadow_dom": ["../../packages/declarative_shadow_dom"],
},
}
}
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
"baseUrl": "./", /* Base directory to resolve non-absolute module names. */
"paths": { /* A series of entries which re-map imports to lookup locations relative to the 'baseUrl'. */
"rules_prerender": ["packages/rules_prerender"], // Map `rules_prerender` module to its implementation.
"@rules_prerender/declarative_shadow_dom": ["packages/rules_prerender/declarative_shadow_dom"]
"@rules_prerender/declarative_shadow_dom": ["packages/declarative_shadow_dom"]
},
"rootDirs": [ /* List of root folders whose combined content represents the structure of the project at runtime. */
".",
Expand Down

0 comments on commit 1ad5e62

Please sign in to comment.