gpt4 book ai didi

typescript - ASP.NET 核心项目 : How to keep Typescript from Compiling

转载 作者:搜寻专家 更新时间:2023-10-30 20:54:33 25 4
gpt4 key购买 nike

我正在尝试将现有的 Angular 2 应用程序集成到 Visual Studio 中的现有 ASP.NET Core 项目中。这两个项目独立工作,但是当我尝试在 Visual Studio 中编译 ASP.NET Core 项目时,我收到了一堆与 node_modules 文件夹中的文件相关的 typescript 编译错误。

enter image description here

我如何:

  • 完全不编译 typescript
  • 防止编译器查看 node_modules 中的任何内容

我可以通过将 node_modules 文件夹移到项目根目录中来实现它,但这需要完全重新安排原始项目依赖项和构建文件,我希望避免这种情况。

最佳答案

-1-。您可以通过编辑项目文件 (.xproj) 来禁用 typescript 编译。添加此 block :

<PropertyGroup>
<TypeScriptCompileBlocked>True</TypeScriptCompileBlocked>
</PropertyGroup>

-2-。为了防止编译器查看 node_modules 中的任何内容 - 在 tsconfig 中使用 exclude:

"exclude":[
"node_modules"
]

* node_modules 的路径相对于 tsconfig.json

关于typescript - ASP.NET 核心项目 : How to keep Typescript from Compiling,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39695702/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com