typescript – tsc不包括node_modules

前端之家收集整理的这篇文章主要介绍了typescript – tsc不包括node_modules前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
{
  "compilerOptions": {
    "target": "es5","module": "commonjs","moduleResolution": "node","sourceMap": true,"emitDecoratorMetadata": true,"experimentalDecorators": true,"removeComments": false,"noImplicitAny": false
  },"exclude": [
    "node_modules","typings/main","typings/main.d.ts"
  ]
}

我正在尝试将angular2 / beta8应用程序升级到RC1,而我正在根据Quickstart指南进行基本重组.

我将其tsconfig.json复制到我的项目目录中.我想我已准备好其他一切,但是当我运行tsc时,我在node_modules文件夹中的文件中会遇到各种错误.为什么它首先在那里寻找?

我不知道你是否找到了这个Alex的答案,但LDL的评论中提到的 question/answer提供了答案,由Srikanth Injarapu提交.

这是答案,以防万一有人不想去那个链接

If you’re targeting ES5,add
“node_modules/typescript/lib/lib.es6.d.ts” to tsconfig.json file :

{    
   "compilerOptions": {
     "module": "commonjs","target": "es5","noImplicitAny": false,"outDir": "built","rootDir": ".","sourceMap": false
   },"files": [
     "helloworld.ts","node_modules/typescript/lib/lib.es6.d.ts"
   ],"exclude": [
     "node_modules"
   ]
 }

编辑

在我的应用程序中,我使用webpack来构建我的应用程序,我仍然得到在控制台上吐出的相同错误.我目前正在寻找解决这个问题的方法,并将用我发现的内容进行报告.

原文链接:https://www.f2er.com/angularjs/141879.html

猜你在找的Angularjs相关文章