Skip to content

Commit

Permalink
fix: tsconfig.json paths field in wrong location
Browse files Browse the repository at this point in the history
  • Loading branch information
k-yang committed Mar 16, 2023
1 parent e7510ef commit c58ce2b
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,21 +19,21 @@
"sourceMap": true,
"esModuleInterop": true,
"incremental": true,
"paths": {
"@nibiruchain/protojs": [
"./packages/protojs"
],
"@nibiruchain/nibijs": [
"./packages/nibijs"
]
}
},
"exclude": [
"node_modules",
"dist",
"**/*.test.ts",
"**/*.spec.ts"
],
"paths": {
"@nibiruchain/protojs": [
"packages/protojs"
],
"@nibiruchain/nibijs": [
"packages/nibijs"
]
},
"references": [
{
"path": "./packages/protojs"
Expand All @@ -43,6 +43,6 @@
},
{
"path": "./packages/indexer-nibi"
},
}
]
}

0 comments on commit c58ce2b

Please sign in to comment.