ionic3 添加RequireJs

1.添加依赖

npm install --save @types/node

2.修改tsconfig.json

 "target": "es5",
 // 添加
    "types": [
      "node"
    ],
    "typeRoots": [
      "node_modules/@types"
    ]

猜你喜欢

转载自blog.csdn.net/u013591091/article/details/80734124