Tell me what to write in the tsconfig.json file to redirect the compilation of js files to the correct folder?

    1 answer 1

    You have an outDir: "path" parameter. You will have the file look something like this:

    { "compilerOptions": { "target": "es5", .... "outDir": "dist" } }