typings/index.d.ts
declare module "*.svg";
declare module "*.png";
declare module "*.jpg";
tsconfig.json
{
"compilerOptions": {
"module": "commonjs",
"target": "es5",
"declaration": true,
"outDir": "./dist"
},
"include": ["src/**/*", "typings/index.d.ts"]
}
Whenever I execute the build
command, it fails to include the images that were imported.