JavaScript file not found when HTML and JS are in separate directories
I've created a simple TS project with the following file structure: dairyproducts.github.io/ ├── package.json ├── public/ │ ├── images/ │ ├── index.html ├── src/ │ └── index.ts ├── dist/ │ └── index.js └── tsconfig.json Where index.js is the compiled index.ts.…