cannot write file because it would overwrite input file

Creator
Creator
Seonglae Cho
Created
Created
2022 Jul 7 10:23
Editor
Edited
Edited
2023 May 8 4:27
Refs
Refs

js & ts in same workspace

{ "compilerOptions": { // Tells TypeScript to read `.js` files, as normally they are // ignored as source files. "allowJs": true, // Generate `d.ts` files. "declaration": true, // This compiler run should only output `d.ts` files. "emitDeclarationOnly": true, // Types should go into this directory. Removing this would place // the `.d.ts` files next to the `.js` files. "outDir": "dist" } }
 
 
 
 

Recommendations