Skip to content

Commit

Permalink
fix(tsconfig): prioritize src over dist (#38)
Browse files Browse the repository at this point in the history
  • Loading branch information
karashiiro committed May 15, 2022
1 parent 0613631 commit 7135656
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions modules/venat-module-example/tsconfig.json
Expand Up @@ -7,12 +7,12 @@
"outDir": "./dist",
"paths": {
"@the-convocation/venat-core": [
"../../core/dist/src",
"../../core/src"
"../../core/src",
"../../core/dist/src"
],
"@the-convocation/venat-core/*": [
"../../core/dist/src/*",
"../../core/src/*"
"../../core/src/*",
"../../core/dist/src/*"
]
}
},
Expand Down

0 comments on commit 7135656

Please sign in to comment.