Chore: use fork-ts-checker plugin for eslint check (#25631)

* Use fork-ts-checker for eslint check

* Fix lint issue

* Add packages to lint

* Add comments to webpack configs
This commit is contained in:
Zoltán Bedi
2020-06-22 16:15:29 +02:00
committed by GitHub
parent 95d53f03a0
commit c16890c22d
6 changed files with 97 additions and 68 deletions

View File

@ -6,7 +6,7 @@ const pull = require('lodash/pull');
let dependencies = Object.keys(pkg.dependencies);
// remove jquery so we can add it first
// remove rxjs so we can only depend on parts of it in code
pull(dependencies, 'jquery', 'rxjs')
pull(dependencies, 'jquery', 'rxjs');
// add jquery first
dependencies.unshift('jquery');