ベスパリブ

プログラミングを主とした日記・備忘録です。ベスパ持ってないです。

メールの改行コードはCRLFにしてね

家のラズパイからメールの送信できね~~と思ってパケットキャプチャしたら、なんか「See http://pobox.com/~djb/docs/smtplf.html.」と怪しげなURLを見ろというパケットを発見しました。

アクセスしたら、「メールの改行コードはCRLFにしてね」という内容のページでした。

https://cr.yp.to/docs/smtplf.html

そういえばメールの本文の改行コードをLFにしてしまっていたので、CRLFに直したら、無事送信できました。

OpenSSLでメール送信するときのRCPT TOコマンドでのエラーと、記事をキャッシュで読む方法

OpenSSLを使って以下のようにメールを送信しようとしたとき、

> openssl s_client -connect smtp.mail.yahoo.co.jp:465
CONNECTED(000001C0)
...()
read R BLOCK
220 smtpgate606.mail.ssk.ynwp.yahoo.co.jp ESMTP ready
EHLO localhost
250-smtpgate606.mail.ssk.ynwp.yahoo.co.jp
250-PIPELINING
250-8BITMIME
250-SIZE 20480000
250 AUTH PLAIN LOGIN XYMYCONNECT
AUTH PLAIN
334
dGFrZxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxE=
235 ok, go ahead (#2.0.0)
MAIL FROM:<xxxxxxxxxxxxxxxxx@yahoo.co.jp>
250 ok
RCPT TO:<yyyyyyyyyy@yahoo.co.jp>
RENEGOTIATING
5428:error:1420410A:SSL routines:SSL_renegotiate:wrong ssl version:ssl\ssl_lib.c:2127:

というふうに、RCPT TOコマンドを送信するとエラーが発生して切断してしまいます。

エラー原因の詳細は以下の記事が詳しいです。

[Postfix] [OpenSSL] [解決] RENEGOTIATING SSL routines:SSL_renegotiate:wrong ssl version:ssl/ssl_lib.c - noknow

ターミナルでOpenSSL接続中、標準入力の最初の文字が"R"の場合、TLSの再ネゴシエーションとして解釈してしまうようです。

RCPT TOR の文字が原因だそうです。なんざそら。

-quietオプションをつけると解決します。

以下のように正常に動作しました。

> openssl s_client -connect smtp.mail.yahoo.co.jp:465 -quiet
depth=2 C = JP, O = "SECOM Trust Systems CO.,LTD.", OU = Security Communication RootCA2
verify error:num=20:unable to get local issuer certificate
verify return:1
depth=1 C = JP, O = "Cybertrust Japan Co., Ltd.", CN = Cybertrust Japan SureServer CA G4
verify return:1
depth=0 C = JP, ST = Tokyo, L = Chiyoda-ku, O = Yahoo Japan Corporation, CN = smtp.mail.yahoo.co.jp
verify return:1
220 smtpgate607.mail.ssk.ynwp.yahoo.co.jp ESMTP ready
EHLO localhost
250-smtpgate607.mail.ssk.ynwp.yahoo.co.jp
250-PIPELINING
250-8BITMIME
250-SIZE 20480000
250 AUTH PLAIN LOGIN XYMYCONNECT
AUTH PLAIN
334
dGFrZxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxE=
235 ok, go ahead (#2.0.0)
MAIL FROM:<xxxxxxxxxxx@yahoo.co.jp>
250 ok
RCPT TO:<yyyyyyyyyy@yahoo.co.jp>
250 ok
DATA
354 go ahead
Date: Mon, 28 Mar 2005 22:30+40 +0900
From: xxxxxxxxxxx <xxxxxxxxxxx@yahoo.co.jp>
To: yyyyyyyyyy@yahoo.co.jp
Subject: SMTP Test Mail
Message-Id: <20050328223040.1711.yyyyyyyyyy@yahoo.co.jp>
Hello.
This is test mail.
.
250 ok 1591260208 qp 95707
Quit
221 smtp6007.mail.ssk.ynwp.yahoo.co.jp

500エラーの記事を読みたい

どちらかというとこちらが本題です。

エラー内容でググると、記事がヒットするわけです。

f:id:takeg:20200604175454p:plain
検索結果

一番上の記事は、検索クエリの「routines SSL_renegotiate:wrong」という文字列が全て含まれていて、記事のタイトルにも[解決]と書いてあるので、この記事を読めば解決しそうです。

しかし、500 Internal Server Errorで見れない!

で、数十年インターネットしてて初めて知ったんですが、検索結果に出てきた記事をキャッシュで読む機能があるんですね。

f:id:takeg:20200604175753p:plain
キャッシュで読む

画像の矢印マークをクリックしたら「キャッシュ」というのが出てくるので、それをクリックすると記事が読めました。

参考

uPythonのuはマイクロのu

ガッツのGみたいな。

ひょんなことからusslのモジュールを調べていたのですが、usslのuってなんだよって思ってました。

ほかにもusocketとかusslとかujsonとかuPythonとかあります。おそらくですが、ここでのuは「マイクロ(μ)」を意味しています。

μとuが字面が似ているからというのは、なかなか気づきませんでした。

MicroPython、略してuPythonです。

ARC 054: B問題の解説(Python3)

問題:AtCoder Regular Contest 054: B - ムーアの法則

解説

微分して二分法をして解を求める方法と、三分探索をして解を求める方法があります。


問題を要約すると、x年後のコンピュータを使ってT(334)の計算が終わる時間をf(x)としたときの、 f(x) = x + \frac{P}{2^{\frac{x}{1.5}}} の最小値を求めるというもの。


 0 \leq P \leq 10^{18} という制約により、xの値を0から一個ずつ試していくという線形探索は時間がかかりすぎるので駄目っぽいのは気づきます。


 f(x)が下に凸関数ということに気づけば、以下の2つの方法のどちらかで問題を解けます。

【方法1】 f'(x)=0のとき(傾き0のとき) f(x)は最小値をとるので、 f'(x)=0となるようなxを二分探索で探せばよい。

【方法2】下に凸関数なので、 f(x)の最小値を三分探索で求める。


 f(x)が下に凸関数の条件は、「  f''(x)>=0」であること。

詳しくは上に凸,下に凸な関数と二階微分 - 高校数学の美しい物語を参照。

f:id:takeg:20200506073440j:plain

 a^{x}微分は30億年ぶりなので、間違ってるかもしれません。

ソースコード

# -*- coding:utf-8 -*-

def solve():
    """f'(x)=0となるようなxを二分法(二分探索)で求める方法"""
    import math

    P = float(input())

    def f(x):
        # f(x)
        return x + P/(2**(x/1.5))

    def fd(x):
        # f'(x)
        return 1 + P*math.log(2**(-1/1.5)) * (2**(-x/1.5))

    left, right = 0, P
    cnt = 500  # 適当
    while cnt > 0:
        cnt -= 1
        mid = (left+right)/2
        if fd(mid) == 0:
            break
        elif fd(mid) < 0:
            left = mid
            continue
        elif fd(mid) > 0:
            right = mid
            continue

    print(f(mid))


def solve2():
    """三分探索で解く方法"""
    P = float(input())

    def f(x):
        # return x + P/(2**(x/1.5))  # OverflowError: (34, 'Result too large')
        return x + P*(2**(-x/1.5))

    # f(x)は下に凸関数なので、三分探索で解く
    left, right = 0, P
    cnt = 500  # 適当
    ans = float("inf")
    while cnt > 0:
        cnt -= 1

        c1, c2 = (2*left+right)/3, (left+2*right)/3
        ret1, ret2 = f(c1), f(c2)

        if ret1 > ret2:
            left = c1
            ans = min(ans, ret2)
            continue
        else:
            right = c2
            ans = min(ans, ret1)
            continue

    print(ans)


if __name__ == "__main__":
    solve2()

注意なのですが、上の、

    def f(x):
        # return x + P/(2**(x/1.5))  # OverflowError: (34, 'Result too large')
        return x + P*(2**(-x/1.5))

の部分の書き方によって、OverflowError: (34, 'Result too large')のエラーが発生してしまいます。

3.0000
Traceback (most recent call last):
  File "c:/Users/XXXX/YYYY/022.py", line 32, in <module>
  File "c:/Users/XXXX/YYYY/022.py", line 17, in solve
    ret1, ret2 = f(c1), f(c2)
  File "c:/Users/XXXX/YYYY/022.py", line 7, in f
    return x + P/(2**(x/1.5))
OverflowError: (34, 'Result too large')

xが10000程度でも、途中計算の(2**(x/1.5))の値が大きすぎてオーバーフローして上記のようなエラーが発生します。

これを(2**(-x/1.5))と書き換えることで、途中計算でオーバーフローの発生を防げます。

計算式をプログラミングするときは、書き方に意識しましょうという問題で学びがありました。

参考

pythonnetのclrのインストールと使い方

pythonnetパッケージとは、Python for .NETと呼ばれるもので、.NETのCommon Language Runtime(CLR)をPythonで扱えるようになるパッケージです。

といってもあまりよくわかってないのですが、とにかくこのpythonnetのclrモジュールを使うことで、Pythonプログラムの中でdllファイルを読み込んで、そのdllモジュールを使うことができます。

github.com

pythonnetのインストール

Installation · pythonnet/pythonnet Wiki · GitHub

Anacondaだとまたインストールの方法が違うようです。詳しくは上記の公式Wikiを見てください。

Python3.8.xだとPythonの3.8.0のバグにより、インストールに失敗します。(2020/03/23現在)

pythonnetの公式には3.8.1で修正される予定みたいなこと書いてありますが、3.8.1でも以下のようなエラーが出てしまいます。

(venv) > pip install pythonnet
    Collecting pythonnet
      Using cached pythonnet-2.4.0.tar.gz (1.8 MB)
    Building wheels for collected packages: pythonnet
      Building wheel for pythonnet (setup.py) ... error
      ERROR: Command errored out with exit status 1:
        command: 'c:\users\XXXX\workspace\clr_test\venv\scripts\python.exe' -u -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\XXXX\\AppData\\Local\\Temp\\pip-install-co_4hlm1\\pythonnet\\setup.py'"'"'; __file__='"'"'C:\\Users\\XXXX\\AppData\\Local\\Temp\\pip-install-co_4hlm1\\pythonnet\\setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' bdist_wheel -d 'C:\Users\XXXX\AppData\Local\Temp\pip-wheel-j0v3wdk9'
            cwd: C:\Users\XXXX\AppData\Local\Temp\pip-install-co_4hlm1\pythonnet\
      Complete output (70 lines):
      running bdist_wheel
      running build
      running build_ext
      https://www.nuget.org/api/v2/ の更新を確認しています。
      NuGet.exe 4.1.0 は実行中です。
      NuGet.exe を 5.4.0 に更新しています。
      正常に更新されました。
      MSBuild auto-detection: using msbuild version '14.0' from 'C:\Program Files (x86)\MSBuild\14.0\bin\amd64'.
      Restoring NuGet package NUnit.3.7.1.
      Restoring NuGet package UnmanagedExports.1.2.7.
      Restoring NuGet package NUnit.ConsoleRunner.3.7.0.
      Adding package 'NUnit.ConsoleRunner.3.7.0' to folder 'C:\Users\XXXX\AppData\Local\Temp\pip-install-co_4hlm1\pythonnet\packages'
      Adding package 'UnmanagedExports.1.2.7' to folder 'C:\Users\XXXX\AppData\Local\Temp\pip-install-co_4hlm1\pythonnet\packages'
      Adding package 'NUnit.3.7.1' to folder 'C:\Users\XXXX\AppData\Local\Temp\pip-install-co_4hlm1\pythonnet\packages'
      Added package 'UnmanagedExports.1.2.7' to folder 'C:\Users\XXXX\AppData\Local\Temp\pip-install-co_4hlm1\pythonnet\packages'
      Added package 'NUnit.ConsoleRunner.3.7.0' to folder 'C:\Users\XXXX\AppData\Local\Temp\pip-install-co_4hlm1\pythonnet\packages'
      Added package 'NUnit.3.7.1' to folder 'C:\Users\XXXX\AppData\Local\Temp\pip-install-co_4hlm1\pythonnet\packages'

      NuGet Config files used:
          C:\Users\XXXX\AppData\Roaming\NuGet\NuGet.Config
          C:\Program Files (x86)\NuGet\Config\Microsoft.VisualStudio.Offline.config

      Feeds used:
          C:\Users\XXXX\.nuget\packages\
          https://api.nuget.org/v3/index.json
          C:\Program Files (x86)\Microsoft SDKs\NuGetPackages\

      Installed:
          3 package(s) to packages.config projects
      Traceback (most recent call last):
        File "tools\geninterop\geninterop.py", line 24, in <module>
          from pycparser import c_ast, c_parser
      ModuleNotFoundError: No module named 'pycparser'
      Traceback (most recent call last):
        File "<string>", line 1, in <module>
        File "C:\Users\XXXX\AppData\Local\Temp\pip-install-co_4hlm1\pythonnet\setup.py", line 623, in <module>
          setup(
        File "c:\users\XXXX\workspace\clr_test\venv\lib\site-packages\setuptools\__init__.py", line 145, in setup
          return distutils.core.setup(**attrs)
        File "C:\Users\XXXX\AppData\Local\Programs\Python\Python38-32\lib\distutils\core.py", line 148, in setup
          dist.run_commands()
        File "C:\Users\XXXX\AppData\Local\Programs\Python\Python38-32\lib\distutils\dist.py", line 966, in run_commands
          self.run_command(cmd)
        File "C:\Users\XXXX\AppData\Local\Programs\Python\Python38-32\lib\distutils\dist.py", line 985, in run_command
          cmd_obj.run()
        File "C:\Users\XXXX\AppData\Local\Temp\pip-install-co_4hlm1\pythonnet\setup.py", line 610, in run
          return bdist_wheel.bdist_wheel.run(self)
        File "c:\users\XXXX\workspace\clr_test\venv\lib\site-packages\wheel\bdist_wheel.py", line 223, in run
          self.run_command('build')
        File "C:\Users\XXXX\AppData\Local\Programs\Python\Python38-32\lib\distutils\cmd.py", line 313, in run_command
          self.distribution.run_command(command)
        File "C:\Users\XXXX\AppData\Local\Programs\Python\Python38-32\lib\distutils\dist.py", line 985, in run_command
          cmd_obj.run()
        File "C:\Users\XXXX\AppData\Local\Programs\Python\Python38-32\lib\distutils\command\build.py", line 135, in run
          self.run_command(cmd_name)
        File "C:\Users\XXXX\AppData\Local\Programs\Python\Python38-32\lib\distutils\cmd.py", line 313, in run_command
          self.distribution.run_command(command)
        File "C:\Users\XXXX\AppData\Local\Programs\Python\Python38-32\lib\distutils\dist.py", line 985, in run_command
          cmd_obj.run()
        File "C:\Users\XXXX\AppData\Local\Programs\Python\Python38-32\lib\distutils\command\build_ext.py", line 340, in run
          self.build_extensions()
        File "C:\Users\XXXX\AppData\Local\Programs\Python\Python38-32\lib\distutils\command\build_ext.py", line 449, in build_extensions
          self._build_extensions_serial()
        File "C:\Users\XXXX\AppData\Local\Programs\Python\Python38-32\lib\distutils\command\build_ext.py", line 474, in _build_extensions_serial
          self.build_extension(ext)
        File "C:\Users\XXXX\AppData\Local\Temp\pip-install-co_4hlm1\pythonnet\setup.py", line 298, in build_extension
          subprocess.check_call([sys.executable, geninterop, interop_file])
        File "C:\Users\XXXX\AppData\Local\Programs\Python\Python38-32\lib\subprocess.py", line 364, in check_call
          raise CalledProcessError(retcode, cmd)
      subprocess.CalledProcessError: Command '['c:\\users\\XXXX\\workspace\\clr_test\\venv\\scripts\\python.exe', 'tools\\geninterop\\geninterop.py', 'src\\runtime\\interop38.cs']' returned non-zero exit status
    1.
      ----------------------------------------
      ERROR: Failed building wheel for pythonnet
      Running setup.py clean for pythonnet
    Failed to build pythonnet
    Installing collected packages: pythonnet
        Running setup.py install for pythonnet ... error
        ERROR: Command errored out with exit status 1:
          command: 'c:\users\XXXX\workspace\clr_test\venv\scripts\python.exe' -u -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\XXXX\\AppData\\Local\\Temp\\pip-install-co_4hlm1\\pythonnet\\setup.py'"'"'; __file__='"'"'C:\\Users\\XXXX\\AppData\\Local\\Temp\\pip-install-co_4hlm1\\pythonnet\\setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' install --record 'C:\Users\XXXX\AppData\Local\Temp\pip-record-avnq3p6k\install-record.txt' --single-version-externally-managed --compile --install-headers 'c:\users\XXXX\workspace\clr_test\venv\include\site\python3.8\pythonnet'
              cwd: C:\Users\XXXX\AppData\Local\Temp\pip-install-co_4hlm1\pythonnet\
        Complete output (6 lines):
        usage: setup.py [global_opts] cmd1 [cmd1_opts] [cmd2 [cmd2_opts] ...]
            or: setup.py --help [cmd1 cmd2 ...]
            or: setup.py --help-commands
            or: setup.py cmd --help

        error: option --single-version-externally-managed not recognized
        ----------------------------------------
    ERROR: Command errored out with exit status 1: 'c:\users\XXXX\workspace\clr_test\venv\scripts\python.exe' -u -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\XXXX\\AppData\\Local\\Temp\\pip-install-co_4hlm1\\pythonnet\\setup.py'"'"'; __file__='"'"'C:\\Users\\XXXX\\AppData\\Local\\Temp\\pip-install-co_4hlm1\\pythonnet\\setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' install --record 'C:\Users\XXXX\AppData\Local\Temp\pip-record-avnq3p6k\install-record.txt' --single-version-externally-managed --compile --install-headers 'c:\users\XXXX\workspace\clr_test\venv\include\site\python3.8\pythonnet' Check the logs for full command output.

python3.7以下だとインストールできます。(以下の方法はグローバルインストールするので、アンインストールしたければpy -3.7 -m pip uninstall pythonnetをすること)

(venv) PS C:\Users\XXXX\workspace\clr_test> py -3.7 -m pip install pythonnet
Python 3.7.6 (tags/v3.7.6:43364a7ae0, Dec 19 2019, 00:42:30) [MSC v.1916 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> exit()
Collecting pythonnet
  Downloading https://files.pythonhosted.org/packages/65/ed/cd200e95392d7f4a74319ff9166ba8a4a6fb28a405b065297f3fdec82da9/pythonnet-2.4.0-cp37-cp37m-win_amd64.whl (70kB)
      |████████████████████████████████| 71kB 1.5MB/s 
Installing collected packages: pythonnet
Successfully installed pythonnet-2.4.0

グローバルインストールされてるので、アンインストールしたければ以下のようにアンインストールします。

# インストールの確認
PS C:\Users\XXXX\workspace\hoge> py -3.7 -m pip freeze
pythonnet==2.4.0
# アンインストール
PS C:\Users\XXXX\workspace\hoge> py -3.7 -m pip uninstall pythonnet
Uninstalling pythonnet-2.4.0:
  Would remove:
    c:\users\XXXX\appdata\local\programs\python\python37\lib\site-packages\clr.pyd
    c:\users\XXXX\appdata\local\programs\python\python37\lib\site-packages\python.runtime.dll
    c:\users\XXXX\appdata\local\programs\python\python37\lib\site-packages\pythonnet-2.4.0.dist-info\*
Proceed (y/n)? y
  Successfully uninstalled pythonnet-2.4.0
# 再度確認
PS C:\Users\XXXX\workspace\hoge> py -3.7 -m pip freeze
PS C:\Users\XXXX\workspace\hoge>

clrモジュールの使い方

さて、pythonnetがインストールされていれば、clrモジュールを使うことができます。

>>> import clr
>>> dir(clr)
['AddReference', 'FindAssembly', 'GetClrType', 'ListAssemblies', 'Microsoft', 'Python', 'System', '_AtExit', '__class__', '__doc__', '__file__', '__loader__', '__name__', '__package__', '__spec__', '__version__', '_extras', 'clrModule', 'clrmethod', 'clrproperty', 'e__NativeCall', 'getPreload', 'setPreload']

いろんなサイトを巡回してみると、AddReferenceToFileAndPathを使ってるサイトがありますが、AddReferenceでOK。

import clr
clr.AddReference(r"...\Redist\SolidWorks.Interop.swconst.dll")
from SolidWorks.Interop import swconst
    
print(swconst.swDisplayStateOpts_e.swAllDisplayState)
# 2

stackoverflow.com

clr違い

>>> import clr
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ModuleNotFoundError: No module named 'clr'

上記のエラーを見て、ついpip install clrをしてしまうと、違うclrモジュールをインストールしてしまうので注意が必要です。

pypi.org

(venv) PS C:\Users\XXXX\workspace\clr_test> pip install clr
Collecting clr
  Using cached clr-1.0.3-py2.py3-none-any.whl (4.4 kB)
Installing collected packages: clr
Successfully installed clr-1.0.3
(venv) PS C:\Users\XXXX\workspace\clr_test> py
Python 3.8.1 (tags/v3.8.1:1b293b6, Dec 18 2019, 22:39:24) [MSC v.1916 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import clr
>>> dir(clr)
['StyleBuilder', '__builtins__', '__cached__', '__doc__', '__file__', '__loader__', '__module__', '__name__', '__package__', '__path__', '__spec__', '_styles', 'black', 'blue', 'bold', 'cyan', 'dim', 'green', 'hidden', 'inverse', 'italic', 'key', 'light_black', 'light_blue', 'light_cyan', 'light_green', 'light_magenta', 'light_red', 'light_white', 'light_yellow', 'magenta', 'on_black', 'on_blue', 'on_cyan', 'on_green', 'on_light_black', 'on_light_blue', 'on_light_cyan', 'on_light_green', 'on_light_magenta', 'on_light_red', 'on_light_white', 'on_light_yellow', 'on_magenta', 'on_red', 'on_white', 'on_yellow', 'red', 'strikethrough', 'style_builder', 'sys', 'underline', 'value', 'white', 'yellow']

参考

`npm run tsc --init` でエラーが起きる原因

package.jsonのscriptsセクションが以下のようになっているとします。

  "scripts": {
    "tsc": "tsc"
  },

これで、シェル等で

> npm run tsc

とコマンドを実行すると実際には、

> ./node_modules/.bin/tsc

が実行されます。

このように、scriptsセクションでは、./node_modules/.bin/hogeと打つのがめんどうなコマンドをnpm run hogeで実行してくれるシュートカットを登録できます。

ということなので、npm run tsc --initとオプション引数を渡してコマンドを実行できそうですが、これをするとエラーが起きます。残念。

PS C:\Users\XXXX\workspace\myapp\myapp> npm run tsc --init

> myapp@1.0.0 tsc C:\Users\XXXX\workspace\myapp\myapp
> tsc

error TS18003: No inputs were found in config file 'C:/Users/XXXX/workspace/myapp/myapp/tsconfig.json'. Specified 'include' paths were '["**/*"]' and 'exclude' paths were '[]'.


Found 1 error.

npm ERR! code ELIFECYCLE
npm ERR! errno 2
npm ERR! myapp@1.0.0 tsc: `tsc`
npm ERR! Exit status 2
npm ERR!
npm ERR! Failed at the myapp@1.0.0 tsc script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.

npm ERR! A complete log of this run can be found in:
npm ERR!     C:\Users\XXXX\AppData\Roaming\npm-cache\_logs\2020-03-19T02_15_16_995Z-debug.log

コマンド引数を受け付けてくれないんですね。

しょうがないので、この場合のとりうる手段としては、

  • 【方法1】: 直接./node_modules/.bin/tsc --initとやる
  • 【方法2】: scriptsセクションにまんまのコマンドを追加する

のどちらかしかなさそうです。

方法1

> ./node_modules/.bin/tsc --init

方法2

  "scripts": {
    "tsc": "tsc",
    "tsc--init": "tsc --init"
  },
> npm run tsc--init 

久しぶりに npm run build したらエラー出るのが解せない

久しぶりにプロジェクトを開いてとりあえずビルドしてみたらエラーが出てきてくまった。以下、エラー内容です。

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js(295,22)
      TS2555: Expected at least 3 arguments, but got 2.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js(301,23)
      TS2555: Expected at least 3 arguments, but got 2.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js(306,18)
      TS2683: 'this' implicitly has type 'any' because it does not have a type annotation.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js(324,20)
      TS7006: Parameter 'source' implicitly has an 'any' type.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js(334,3)
      TS2683: 'this' implicitly has type 'any' because it does not have a type annotation.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js(335,3)
      TS2683: 'this' implicitly has type 'any' because it does not have a type annotation.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js(337,3)
      TS2683: 'this' implicitly has type 'any' because it does not have a type annotation.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js(337,27)
      TS2683: 'this' implicitly has type 'any' because it does not have a type annotation.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js(337,65)
      TS7006: Parameter 's' implicitly has an 'any' type.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js(341,3)
      TS2683: 'this' implicitly has type 'any' because it does not have a type annotation.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js(342,3)
      TS2683: 'this' implicitly has type 'any' because it does not have a type annotation.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js(343,3)
      TS2683: 'this' implicitly has type 'any' because it does not have a type annotation.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js(344,3)
      TS2683: 'this' implicitly has type 'any' because it does not have a type annotation.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js(345,3)
      TS2683: 'this' implicitly has type 'any' because it does not have a type annotation.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js(355,62)
      TS7006: Parameter 'aSource' implicitly has an 'any' type.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js(380,11)
      TS8024: JSDoc '@param' tag has name 'SourceMapGenerator', but there is no parameter with that name.     

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js(382,11)
      TS8024: JSDoc '@param' tag has name 'String', but there is no parameter with that name.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js(387,44)
      TS7006: Parameter 'aSourceMap' implicitly has an 'any' type.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js(387,56)
      TS7006: Parameter 'aSourceMapURL' implicitly has an 'any' type.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js(397,65)
      TS7006: Parameter 's' implicitly has an 'any' type.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js(407,9)
      TS7005: Variable 'destGeneratedMappings' implicitly has an 'any[]' type.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js(408,9)
      TS7005: Variable 'destOriginalMappings' implicitly has an 'any[]' type.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js(454,3)
      TS2683: 'this' implicitly has type 'any' because it does not have a type annotation.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js(455,3)
      TS2683: 'this' implicitly has type 'any' because it does not have a type annotation.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js(456,3)
      TS2683: 'this' implicitly has type 'any' because it does not have a type annotation.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js(456,3)
      TS7008: Member 'source' implicitly has an 'any' type.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js(457,3)
      TS2683: 'this' implicitly has type 'any' because it does not have a type annotation.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js(457,3)
      TS7008: Member 'originalLine' implicitly has an 'any' type.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js(458,3)
      TS2683: 'this' implicitly has type 'any' because it does not have a type annotation.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js(458,3)
      TS7008: Member 'originalColumn' implicitly has an 'any' type.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js(459,3)
      TS2683: 'this' implicitly has type 'any' because it does not have a type annotation.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js(459,3)
      TS7008: Member 'name' implicitly has an 'any' type.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js(468,44)
      TS7006: Parameter 'aStr' implicitly has an 'any' type.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js(468,50)
      TS7006: Parameter 'aSourceRoot' implicitly has an 'any' type.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js(502,20)
      TS2339: Property '_charIsMappingSeparator' does not exist on type 'BasicSourceMapConsumer'.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js(508,19)
      TS7053: Element implicitly has an 'any' type because expression of type 'any' can't be used to index type '{}'.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js(515,26)
      TS2339: Property 'value' does not exist on type '{}'.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js(516,26)
      TS2339: Property 'rest' does not exist on type '{}'.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js(528,11)
      TS7053: Element implicitly has an 'any' type because expression of type 'any' can't be used to index type '{}'.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js(576,42)
      TS7006: Parameter 'aNeedle' implicitly has an 'any' type.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js(576,51)
      TS7006: Parameter 'aMappings' implicitly has an 'any' type.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js(576,62)
      TS7006: Parameter 'aLineName' implicitly has an 'any' type.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js(577,42)
      TS7006: Parameter 'aColumnName' implicitly has an 'any' type.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js(577,55)
      TS7006: Parameter 'aComparator' implicitly has an 'any' type.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js(577,68)
      TS7006: Parameter 'aBias' implicitly has an 'any' type.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js(601,38)
      TS2551: Property '_generatedMappings' does not exist on type 'BasicSourceMapConsumer'. Did you mean '__generatedMappings'?

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js(602,26)
      TS2551: Property '_generatedMappings' does not exist on type 'BasicSourceMapConsumer'. Did you mean '__generatedMappings'?

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js(608,28)
      TS2551: Property '_generatedMappings' does not exist on type 'BasicSourceMapConsumer'. Did you mean '__generatedMappings'?

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js(609,32)
      TS2551: Property '_generatedMappings' does not exist on type 'BasicSourceMapConsumer'. Did you mean '__generatedMappings'?

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js(647,50)
      TS7006: Parameter 'aArgs' implicitly has an 'any' type.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js(649,27)
      TS2555: Expected at least 3 arguments, but got 2.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js(650,29)
      TS2555: Expected at least 3 arguments, but got 2.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js(655,12)
      TS2551: Property '_generatedMappings' does not exist on type 'BasicSourceMapConsumer'. Did you mean '__generatedMappings'?

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js(663,26)
      TS2551: Property '_generatedMappings' does not exist on type 'BasicSourceMapConsumer'. Did you mean '__generatedMappings'?

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js(702,43)
      TS7006: Parameter 'sc' implicitly has an 'any' type.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js(711,47)
      TS7006: Parameter 'aSource' implicitly has an 'any' type.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js(711,56)
      TS7006: Parameter 'nullOnMissing' implicitly has an 'any' type.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js(781,51)
      TS7006: Parameter 'aArgs' implicitly has an 'any' type.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js(782,23)
      TS2555: Expected at least 3 arguments, but got 2.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js(794,26)
      TS2555: Expected at least 3 arguments, but got 2.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js(795,28)
      TS2555: Expected at least 3 arguments, but got 2.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js(800,12)
      TS2551: Property '_originalMappings' does not exist on type 'BasicSourceMapConsumer'. Did you mean '__originalMappings'?

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js(808,26)
      TS2551: Property '_originalMappings' does not exist on type 'BasicSourceMapConsumer'. Did you mean '__originalMappings'?

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js(877,35)
      TS7006: Parameter 'aSourceMap' implicitly has an 'any' type.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js(877,47)
      TS7006: Parameter 'aSourceMapURL' implicitly has an 'any' type.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js(883,22)
      TS2555: Expected at least 3 arguments, but got 2.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js(884,23)
      TS2555: Expected at least 3 arguments, but got 2.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js(886,18)
      TS2683: 'this' implicitly has type 'any' because it does not have a type annotation.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js(890,3)
      TS2683: 'this' implicitly has type 'any' because it does not have a type annotation.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js(891,3)
      TS2683: 'this' implicitly has type 'any' because it does not have a type annotation.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js(897,3)
      TS2683: 'this' implicitly has type 'any' because it does not have a type annotation.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js(897,43)
      TS7006: Parameter 's' implicitly has an 'any' type.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js(903,23)
      TS2555: Expected at least 3 arguments, but got 2.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js(904,27)
      TS2555: Expected at least 3 arguments, but got 2.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js(905,29)
      TS2555: Expected at least 3 arguments, but got 2.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js(920,44)
      TS2555: Expected at least 3 arguments, but got 2.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js(968,57)
      TS7006: Parameter 'aArgs' implicitly has an 'any' type.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js(970,27)
      TS2555: Expected at least 3 arguments, but got 2.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js(971,29)
      TS2555: Expected at least 3 arguments, but got 2.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js(976,37)
      TS2554: Expected 4 arguments, but got 3.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js(977,16)
      TS7006: Parameter 'needle' implicitly has an 'any' type.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js(977,24)
      TS7006: Parameter 'section' implicitly has an 'any' type.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js(1014,43)        
      TS7006: Parameter 's' implicitly has an 'any' type.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js(1025,54)        
      TS7006: Parameter 'aSource' implicitly has an 'any' type.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js(1025,63)        
      TS7006: Parameter 'nullOnMissing' implicitly has an 'any' type.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js(1061,58)        
      TS7006: Parameter 'aArgs' implicitly has an 'any' type.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js(1067,50)        
      TS2555: Expected at least 3 arguments, but got 2.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js(1096,51)        
      TS7006: Parameter 'aStr' implicitly has an 'any' type.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js(1096,57)        
      TS7006: Parameter 'aSourceRoot' implicitly has an 'any' type.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js(1097,5)
      TS7008: Member '__generatedMappings' implicitly has an 'any[]' type.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js(1098,5)
      TS7008: Member '__originalMappings' implicitly has an 'any[]' type.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js(1106,82)        
      TS2339: Property '_sourceMapURL' does not exist on type 'IndexedSourceMapConsumer'.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js(1107,23)        
      TS2554: Expected 2 arguments, but got 1.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-map-consumer.js(1113,23)        
      TS2554: Expected 2 arguments, but got 1.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\binary-search.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\binary-search.js(24,10)
      TS7023: 'recursiveSearch' implicitly has return type 'any' because it does not have a return type annotation and is referenced directly or indirectly in one of its return expressions.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\binary-search.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\binary-search.js(24,26)
      TS7006: Parameter 'aLow' implicitly has an 'any' type.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\binary-search.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\binary-search.js(24,32)
      TS7006: Parameter 'aHigh' implicitly has an 'any' type.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\binary-search.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\binary-search.js(24,39)
      TS7006: Parameter 'aNeedle' implicitly has an 'any' type.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\binary-search.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\binary-search.js(24,48)
      TS7006: Parameter 'aHaystack' implicitly has an 'any' type.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\binary-search.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\binary-search.js(24,59)
      TS7006: Parameter 'aCompare' implicitly has an 'any' type.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\binary-search.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\binary-search.js(24,69)
      TS7006: Parameter 'aBias' implicitly has an 'any' type.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\binary-search.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\binary-search.js(89,34)
      TS7006: Parameter 'aNeedle' implicitly has an 'any' type.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\binary-search.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\binary-search.js(89,43)
      TS7006: Parameter 'aHaystack' implicitly has an 'any' type.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\binary-search.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\binary-search.js(89,54)
      TS7006: Parameter 'aCompare' implicitly has an 'any' type.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\binary-search.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\binary-search.js(89,64)
      TS7006: Parameter 'aBias' implicitly has an 'any' type.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\quick-sort.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\quick-sort.js(21,12)
      TS2314: Generic type 'Array<T>' requires 1 type argument(s).

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\quick-sort.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\quick-sort.js(49,12)
      TS2314: Generic type 'Array<T>' requires 1 type argument(s).

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\quick-sort.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\quick-sort.js(107,12)
      TS2314: Generic type 'Array<T>' requires 1 type argument(s).

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js(35,21)
      TS7006: Parameter 'aLine' implicitly has an 'any' type.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js(35,28)
      TS7006: Parameter 'aColumn' implicitly has an 'any' type.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js(35,37)
      TS7006: Parameter 'aSource' implicitly has an 'any' type.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js(35,46)
      TS7006: Parameter 'aChunks' implicitly has an 'any' type.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js(35,55)
      TS7006: Parameter 'aName' implicitly has an 'any' type.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js(36,3)
      TS2683: 'this' implicitly has type 'any' because it does not have a type annotation.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js(36,3)
      TS7008: Member 'children' implicitly has an 'any[]' type.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js(36,3)
      TS7022: 'children' implicitly has type 'any' because it does not have a type annotation and is referenced directly or indirectly in its own initializer.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js(37,3)
      TS2683: 'this' implicitly has type 'any' because it does not have a type annotation.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js(38,3)
      TS2683: 'this' implicitly has type 'any' because it does not have a type annotation.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js(39,3)
      TS2683: 'this' implicitly has type 'any' because it does not have a type annotation.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js(40,3)
      TS2683: 'this' implicitly has type 'any' because it does not have a type annotation.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js(41,3)
      TS2683: 'this' implicitly has type 'any' because it does not have a type annotation.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js(42,3)
      TS2683: 'this' implicitly has type 'any' because it does not have a type annotation.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js(43,24)
      TS2683: 'this' implicitly has type 'any' because it does not have a type annotation.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js(55,47)
      TS7006: Parameter 'aGeneratedCode' implicitly has an 'any' type.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js(55,63)
      TS7006: Parameter 'aSourceMapConsumer' implicitly has an 'any' type.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js(55,83)
      TS7006: Parameter 'aRelativePath' implicitly has an 'any' type.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js(58,16)
      TS2554: Expected 5 arguments, but got 0.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js(84,9)
      TS7034: Variable 'lastMapping' implicitly has type 'any' in some locations where its type cannot be determined.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js(86,46)
      TS7006: Parameter 'mapping' implicitly has an 'any' type.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js(87,11)
      TS7005: Variable 'lastMapping' implicitly has an 'any' type.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js(92,30)
      TS7005: Variable 'lastMapping' implicitly has an 'any' type.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js(106,30)
      TS7005: Variable 'lastMapping' implicitly has an 'any' type.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js(138,50)
      TS7006: Parameter 'sourceFile' implicitly has an 'any' type.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js(150,33)
      TS7006: Parameter 'mapping' implicitly has an 'any' type.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js(150,42)
      TS7006: Parameter 'code' implicitly has an 'any' type.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js(172,52)
      TS7006: Parameter 'aChunk' implicitly has an 'any' type.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js(175,7)
      TS2683: 'this' implicitly has type 'any' because it does not have a type annotation.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js(197,60)
      TS7006: Parameter 'aChunk' implicitly has an 'any' type.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js(221,54)
      TS7006: Parameter 'aFn' implicitly has an 'any' type.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js(245,54)
      TS7006: Parameter 'aSep' implicitly has an 'any' type.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js(268,70)
      TS7006: Parameter 'aPattern' implicitly has an 'any' type.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js(268,80)
      TS7006: Parameter 'aReplacement' implicitly has an 'any' type.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js(290,40)
      TS7006: Parameter 'aSourceFile' implicitly has an 'any' type.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js(290,53)
      TS7006: Parameter 'aSourceContent' implicitly has an 'any' type.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js(291,5)
      TS7053: Element implicitly has an 'any' type because expression of type 'any' can't be used to index type '{}'.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js(301,42)
      TS7006: Parameter 'aFn' implicitly has an 'any' type.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js(309,21)
      TS2403: Subsequent variable declarations must have the same type.  Variable 'len' must be of type 'any', but here has type 'number'.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js(310,43)
      TS7053: Element implicitly has an 'any' type because expression of type 'string' can't be used to index 
type '{}'.
  No index signature with a parameter of type 'string' was found on type '{}'.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js(320,23)
      TS7006: Parameter 'chunk' implicitly has an 'any' type.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js(330,88)
      TS7006: Parameter 'aArgs' implicitly has an 'any' type.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js(338,7)
      TS7034: Variable 'lastOriginalSource' implicitly has type 'any' in some locations where its type cannot 
be determined.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js(339,7)
      TS7034: Variable 'lastOriginalLine' implicitly has type 'any' in some locations where its type cannot be determined.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js(340,7)
      TS7034: Variable 'lastOriginalColumn' implicitly has type 'any' in some locations where its type cannot 
be determined.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js(341,7)
      TS7034: Variable 'lastOriginalName' implicitly has type 'any' in some locations where its type cannot be determined.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js(342,23)
      TS7006: Parameter 'chunk' implicitly has an 'any' type.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js(342,30)
      TS7006: Parameter 'original' implicitly has an 'any' type.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js(347,10)
      TS7005: Variable 'lastOriginalSource' implicitly has an 'any' type.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js(348,13)
      TS7005: Variable 'lastOriginalLine' implicitly has an 'any' type.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js(349,13)
      TS7005: Variable 'lastOriginalColumn' implicitly has an 'any' type.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js(350,13)
      TS7005: Variable 'lastOriginalName' implicitly has an 'any' type.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js(406,37)
      TS7006: Parameter 'sourceFile' implicitly has an 'any' type.

ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js
[tsl] ERROR in C:\Users\XXXX\Desktop\myspace\workspace\MyProject\MyProject\node_modules\@types\webpack-sources\node_modules\source-map\lib\source-node.js(406,49)
      TS7006: Parameter 'sourceContent' implicitly has an 'any' type.

自分のコードじゃなくて、node_modules内のソースでエラが起きてるのが解せない。

tsconfig.jsonのcheckJsをコメントアウトしたら直りました。

{
    "compileOnSave": true,
    "compilerOptions": {
      /* Basic Options */
      // "incremental": true,                   /* Enable incremental compilation */
      "target": "ES5",                          /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019' or 'ESNEXT'. */
      "module": "es2015",                     /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */
      // "lib": [],                             /* Specify library files to be included in the compilation. */
      "allowJs": true,                       /* Allow javascript files to be compiled. */
      // "checkJs": true,                       /* Report errors in .js files. */
     ...

以前はこんなエラー出てなかった気がするし、node_modules内のコードでcheckJsが効いてるのが謎。何か設定をミスってるのかな。

とりあえずビルドは通ったので、これで良しとします。