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