summaryrefslogtreecommitdiff
path: root/examples/framework-lit/src/pages/index.astro
diff options
context:
space:
mode:
Diffstat (limited to 'examples/framework-lit/src/pages/index.astro')
-rw-r--r--examples/framework-lit/src/pages/index.astro7
1 files changed, 6 insertions, 1 deletions
diff --git a/examples/framework-lit/src/pages/index.astro b/examples/framework-lit/src/pages/index.astro
index 4f0dbc309..d193842a0 100644
--- a/examples/framework-lit/src/pages/index.astro
+++ b/examples/framework-lit/src/pages/index.astro
@@ -19,6 +19,11 @@ import { MyCounter } from '../components/my-counter.js';
<h1>Test app</h1>
<MyCounter client:load />
<Lorem />
- <CalcAdd num={33} />
+
+ {/**
+ * Our VS Code extension does not currently properly typecheck attributes on Lit components
+ * As such, the following code will result in a TypeScript error inside the editor, nonetheless, it works in Astro!
+ * @ts-expect-error */}
+ <CalcAdd num={0} />
</body>
</html>