admin管理员组文章数量:1345069
I'm using ts-node and in tsconfig.json
I have "baseUrl": "./src"
. This way I can import a sibling in src
without using ./
. However ts-node does not seem to using the baseUrl
property in resolving the sibling imports, so I get errors like this:
> [email protected] test /home/ole/Junk/tsmochanyc
> mocha -r ts-node/register src/**/*.spec.ts
Error: Cannot find module 'hello'
at Function.Module._resolveFilename (internal/modules/cjs/loader.js:548:15)
Curious whether this is a ts-node bug or whether I should be doing something different?
I'm using ts-node and in tsconfig.json
I have "baseUrl": "./src"
. This way I can import a sibling in src
without using ./
. However ts-node does not seem to using the baseUrl
property in resolving the sibling imports, so I get errors like this:
> [email protected] test /home/ole/Junk/tsmochanyc
> mocha -r ts-node/register src/**/*.spec.ts
Error: Cannot find module 'hello'
at Function.Module._resolveFilename (internal/modules/cjs/loader.js:548:15)
Curious whether this is a ts-node bug or whether I should be doing something different?
Share Improve this question asked Jun 21, 2018 at 0:24 OleOle 47.4k70 gold badges237 silver badges445 bronze badges 1- github./TypeStrong/ts-node/issues/613 – Ole Commented Jun 21, 2018 at 2:42
1 Answer
Reset to default 10As indicated in the issue posted to ts-node tsconfig-paths can be used for this. I have a fully (But minimal) working example here. If you want to try it out just:
git clone https://github./oleersoy/tsmochanyc
cd tsmochanyc
npm i
npm test
Look at the the baseUrl
and paths
propertis in tsconfig.json
to see how the resolution works. In this case they have been set so that tsmochanyc
proxies src/
this way the path mirrors the same paths that devs would use if tsmochanyc
were an external dependency.
本文标签: javascriptShould tsnode examine the baseUrl tsconfigjson propertyStack Overflow
版权声明:本文标题:javascript - Should ts-node examine the baseUrl tsconfig.json property? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743793720a2540042.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论