Skip to content

Commit

Permalink
fix: include path in compilerOptions so that we avoid typescript 2742…
Browse files Browse the repository at this point in the history
  • Loading branch information
christophe-g committed Nov 27, 2024
1 parent 59c332a commit 7a020ba
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
6 changes: 6 additions & 0 deletions packages/access/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
{
"compilerOptions": {
"paths": {
"lit": [
"./node_modules/lit"
]

}
},
"extends": "../../tsconfig.json",
"include": ["internal/**/*.ts", "*.ts"],
Expand Down
6 changes: 5 additions & 1 deletion packages/actor/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {

"paths": {
"lit": [
"./node_modules/lit"
]
}
},
"include": ["src/**/*.ts", "demo/**/*.ts"],
"exclude": []
Expand Down

0 comments on commit 7a020ba

Please sign in to comment.