1

我正在使用配置了 tslint 的 angular2 webpack starter。

我还使用 ngx-datables(直接在 node_modules 中的目录 @swimlane)。

我有很多警告,例如:

 @ ./~/@swimlane/ngx-datatable/src/utils/index.ts 14:0-32
 @ ./~/@swimlane/ngx-datatable/src/components/datatable.component.ts
 @ ./~/@swimlane/ngx-datatable/src/components/index.ts
 @ ./~/@swimlane/ngx-datatable/src/index.ts
 @ ./src/app/adherent/list/adherent-list.component.ts
 @ ./src/app/adherent/list/index.ts
 @ ./src/app/adherent/index.ts
 @ ./src/app/app.module.ts
 @ ./src/app/index.ts
 @ ./src/main.browser.ts
 @ multi (webpack)-dev-server/client?http://localhost:3000 ./src/main.browser.ts

但是,我的配置应该做得很好:

tsconfig.json :

...
"exclude": [
    "node_modules",
    "dist"
  ],
...

tsconfig.webpack.json :

...
"exclude": [
    "node_modules",
    "dist",
    "src/**/*.spec.ts",
    "src/**/*.e2e.ts"
  ],
...

tslint.json :

...
"exclude": [
     "node_modules"
  ],
...

我也试过了"**/node_modules/**"。但没有任何改变,我仍然有警告。

4

2 回答 2

4

您应该对其中的所有文件夹使用 /**

"exclude": [
     "node_modules/**"
  ],
...
于 2017-04-07T09:00:17.163 回答
3

我正在使用与 webpack 相同的 angular2-starter,我的解决方案是添加node_modules要排除的文件夹,它在webpack.dev.js文件中,我已经更改:

exclude: [/\.(spec|e2e)\.ts$/]

exclude: [/\.(spec|e2e)\.ts$/, /node_modules/]

并且有效,@Aravind 提供的解决方案并没有奏效。

于 2017-04-18T09:05:33.003 回答