在nx工作区中创建的本机脚本应用程序中使用自定义路径时遇到一些麻烦。
运行npm run start.android
时,出现以下错误:
Error: com.tns.NativeScriptException: Failed to find module: "@libs/installations/installations.component", relative to: app/tns_modules/
我需要使用自定义的打字稿路径(在tsconfig.json中设置),以便能够将nx工作区中的共享库导入本机脚本应用程序。
示例路径:
"paths": {
"@b2b/*": [
"apps/b2b/src/app/*"
],
"installations/*": [
"dist/installations/*"
],
"@libs/installations/*": [
"libs/installations/src/lib/*"
]
}