Kesalahan: Anda memiliki tsconfig.json dan jsconfig.json. Jika Anda menggunakan TypeScript, silakan hapus file jsconfig.json Anda.

Having both jsconfig.json and tsconfig.json is not necessary, the Typescript 
Documentation cites:

The presence of a tsconfig.json file in a directory indicates that the directory 
is the root of a TypeScript project. 
The tsconfig.json file specifies the root files and the compiler options 
required to compile the project.

JavaScript projects can use a jsconfig.json file instead, which acts almost 
the same but has some JavaScript-related compiler flags enabled by default.

So in typescript is better to have just the tsconfig.json file
MitchAloha