From 98240dd1e1626054421b9f0b8628af0410f218d3 Mon Sep 17 00:00:00 2001 From: Arsh <69170106+lilnasy@users.noreply.github.com> Date: Wed, 1 Jan 2025 05:37:35 +0530 Subject: [PATCH] workaround for https://github.com/microsoft/vscode-css-languageservice/issues/403 --- tsconfig.json | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 27d6bed..9ea243a 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -3,6 +3,14 @@ "compilerOptions": { "baseUrl": ".", "jsx": "react-jsx", - "jsxImportSource": "preact" + "jsxImportSource": "preact", + "plugins": [ + { + "name": "@styled/typescript-styled-plugin", + "lint": { + "unknownAtRules": "ignore" + } + } + ] } } \ No newline at end of file