我正在使用配置了 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/**"
。但没有任何改变,我仍然有警告。