在本机脚本中获取错误下拉

Getting errors in nativescript drop down

运行 time using this command:- tns 运行 android --device Nexus_5X_API_27

错误:-

ERROR in node_modules/nativescript-drop-down/drop-down.d.ts(16,33): error TS2307: Cannot find module 'data/observable-array'. node_modules/nativescript-drop-down/drop-down.d.ts(17,62): error TS2307: Cannot find module 'ui/core/view'. node_modules/nativescript-drop-down/drop-down.d.ts(18,30): error TS2307: Cannot find module 'ui/gestures/gestures'. node_modules/nativescript-drop-down/drop-down.d.ts(19,29): error TS2307: Cannot find module 'ui/list-picker'

.

将此添加到您的项目 tsconfig.json 文件中:

"paths": {
        "*": [
            "./node_modules/tns-core-modules/*",
            "./node_modules/*",
            "src/*"
        ]
 }