From 97574c671359e526c941b64e35125517c351f2ee Mon Sep 17 00:00:00 2001 From: Stefano Magni Date: Fri, 2 Nov 2018 16:58:02 +0100 Subject: [PATCH] Create global.d.ts CSS modules can't work without this file, the 'Cannot find module './xxx.module.scss'.' error is thrown without it --- template/src/global.d.ts | 1 + 1 file changed, 1 insertion(+) create mode 100644 template/src/global.d.ts diff --git a/template/src/global.d.ts b/template/src/global.d.ts new file mode 100644 index 000000000..35306c6fc --- /dev/null +++ b/template/src/global.d.ts @@ -0,0 +1 @@ +declare module '*.css';