How to configure with React? (TS) (NextJS)
See original GitHub issueimport "@vscode/webview-ui-toolkit";
function EmptyState() {
return <vscode-progress-ring></vscode-progress-ring>;
}
will throw
Property 'vscode-progress-ring' does not exist on type 'JSX.IntrinsicElements'.ts(2339)
Is there extra steps required to setup?
Issue Analytics
- State:
- Created 2 years ago
- Comments:15 (7 by maintainers)
Top Results From Across the Web
Basic Features: TypeScript - Next.js
Next.js provides an integrated TypeScript experience, including zero-configuration set up and built-in types for Pages, APIs, and more.
Read more >Using Next.js with TypeScript - LogRocket Blog
To create a new Next.js app, you can use Create Next App. Begin by opening your command-line interface (CLI) and running the command...
Read more >A Guide for Next.js with TypeScript - Refine Dev
We can bootstrap a Next.js application with TypeScript by adding a --typescript or --ts flag to the create-next-app command like below:.
Read more >How to set up a Next.js project with TypeScript and React
1. Initial setup · 2. Create a tsconfig.json file · 3. Install TypeScript & Test Server · 4. Convert to TypeScript (really simple)....
Read more >How to Set Up Next.js With TypeScript - Jake Prins
If you start a new React project, you might want to consider Next.js and TypeScript. In this article, I explain why this would...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
@hawkticehurst , sorry I had missed that other conversation, and will add my use-case and comments there
Changing from
to
did the trick