Support TypeScript?
See original GitHub issueHello @couds and team.
TypeScript is here and covered React.
I think, react-bulma-components
need to add support of TS as soon as possible.
I’m not sure, but this is real “killer feature”, because other React+Bulma repos doesn’t have TS out of the box. We’re may take this and get many stars and users for free!
I’m just learning TypeScript, but I see profit with this solution now. Thanks!
Issue Analytics
- State:
- Created 5 years ago
- Reactions:10
- Comments:11 (4 by maintainers)
Top Results From Across the Web
TypeScript: JavaScript With Syntax For Types.
TypeScript adds additional syntax to JavaScript to support a tighter integration with your editor. Catch errors early in your editor.
Read more >TypeScript Programming with Visual Studio Code
VS Code comes with great debugging support for TypeScript, including support for sourcemaps. Set breakpoints, inspect objects, navigate the call stack, and ...
Read more >TypeScript | WebStorm Documentation - JetBrains
WebStorm supports developing, running, and debugging TypeScript source code. WebStorm recognizes .ts and .tsx files and provides full range ...
Read more >TypeScript support in Svelte - Learn web development
TypeScript support in Svelte · Code along with us · TypeScript: optional static typing for JavaScript · Why TypeScript? · Creating a Svelte ......
Read more >TypeScript - Cypress Documentation
ts file. // in cypress/support/index.ts // load type definitions that come with Cypress module /// <reference types ...
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 FreeTop 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
Top GitHub Comments
+1 Would love to see typescript support
@couds may I ask, what do you use? Flow?
Add TS support — it’s about more support for tools, which community use right now and future.
For example, I start new frontend project via
create-react-app --scripts-version=react-scripts-ts
and want to usereact-bulma-components
to it… yes, all works great, but if I want to write code with TypeScript — I need to components, likeMyComponent.tsx
(not.jsx
or.js
).If I try to imports
react-bulma-components
in.tsx
(or.ts
) components, TS compiler show me error:And does not compile to JS.