Add webpack support

This commit is contained in:
Schmelczer András 2019-12-19 22:14:45 +01:00
parent fb3ef7475c
commit eb2075aec5
33 changed files with 988 additions and 765 deletions

24
custom.d.ts vendored Normal file
View file

@ -0,0 +1,24 @@
declare module "*.svg" {
const content: string;
export default content;
}
declare module "*.png" {
const content: string;
export default content;
}
declare module "*.jpg" {
const content: string;
export default content;
}
declare module "*.jpeg" {
const content: string;
export default content;
}
declare module "*.gif" {
const content: string;
export default content;
}