本文介绍了VS 2017无法找到时刻,JQueryPromise,JQueryEventObject&JQueryAjaxSettings的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在ASP网络核心项目中遇到问题,我只是从bower添加adminLTE,并在更新和安装后已经遇到错误的情况下更新了一些bower安装的软件包

I have a problem in my ASP net core project, I just add adminLTE from bower, and update some bower installed package, after updating and installing I already encountered errors

已经尝试在我的项目中添加 tsconfig.json

already tried adding tsconfig.json in my project

TSCONFIG.JSON:

TSCONFIG.JSON:

 {
  "compileOnSave": true,
  "compilerOptions": {
    "noImplicitAny": false,
    "noEmitOnError": true,
    "sourceMap": true,
    "target": "es6",
    "module": "amd",
    "allowJs": false,
    "allowSyntheticDefaultImports": true
  }
}

错误:

示例错误

推荐答案

排除该插件,将成功执行 .它为我工作.右键单击该插件(Ex:fullycalendar.d.ts),然后单击从项目中排除.

Exclude that plugin, it will be executed successfully. It's working for me. Right click on that plugin (Ex:fullycalendar.d.ts), click on Exclude from project.

这篇关于VS 2017无法找到时刻,JQueryPromise,JQueryEventObject&JQueryAjaxSettings的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-25 04:40