当前位置:  开发笔记 > 编程语言 > 正文

tsconfig.json的“排除”属性未得到尊重

如何解决《tsconfig.json的“排除”属性未得到尊重》经验,为你挑选了0个好方法。

我正在使用此处找到的出色的Express / Node / Typescript示例代码。它使用来自run.sh的以下命令来编译.ts代码:

./node_modules/.bin/tsc --sourcemap --module commonjs ./bin/www.ts

这按宣传的方式工作,但是我更喜欢使用tsconfig.json文件,tsc -p .但是,当我运行该命令时,我得到了很多TS2300: Duplicate identifier 'foo' errors时候tsc(错误?)尝试遍历./node_modulesand ./typings目录的信息。以下是我正在使用的tsconfig.json:

{
  "compilerOptions": {
    "target": "ES5",
    "module": "commonjs",
    "moduleResolution": "node",
    "sourceMap": true,
    "emitDecoratorMetadata": true,
    "experimentalDecorators": true,
    "removeComments": false,
    "noImplicitAny": false
  },
  "exclude": [
    "node_modules",
    "typings"
  ]
}

有任何想法吗?我正在使用tsc 1.7.3 FWIW。

推荐阅读
和谐啄木鸟
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有