Add workaround for files which only have an interface
This commit is contained in:
@ -1,3 +1,6 @@
|
|||||||
export interface IPacker {
|
export interface IPacker {
|
||||||
pack(path: string): void;
|
pack(path: string): void;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Needed because of: https://github.com/s-panferov/awesome-typescript-loader/issues/432
|
||||||
|
export const WORKAROUND = "";
|
||||||
|
@ -18,3 +18,6 @@ export interface IMediaData {
|
|||||||
fileName: string;
|
fileName: string;
|
||||||
dimensions: IMediaDataDimensions;
|
dimensions: IMediaDataDimensions;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Needed because of: https://github.com/s-panferov/awesome-typescript-loader/issues/432
|
||||||
|
export const WORKAROUND = "";
|
||||||
|
Reference in New Issue
Block a user