From e73b64b64fb9ea6ddef8925587e046e13c07fed3 Mon Sep 17 00:00:00 2001 From: Sebastian Malton Date: Fri, 9 Dec 2022 12:58:41 -0800 Subject: [PATCH] Remove named exports from CSS module typings (#6723) - They didn't exist anyway so this now causes compile time errors instead of runtime ones Signed-off-by: Sebastian Malton Signed-off-by: Sebastian Malton --- tsconfig.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index b97369efc7..6036d1452d 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -34,7 +34,10 @@ }, "plugins": [ { - "name": "typescript-plugin-css-modules" + "name": "typescript-plugin-css-modules", + "options": { + "namedExports": false + } } ] },