typescript
typescript copied to clipboard
Add TypeScript to Meteor
Can you extend support for "@babel/runtime": "7.4.0" ? When I have my tsconfig.json like this and ` "@babel/runtime": "7.0.0-beta.39",` my Meteor project works but when I upgrade to 7.1.0 and...
Currently this package is on 2.8 whereas the official npm package is at 3.3. Our application cannot take advantage of features of other packages (e.g. styled components requires 2.9+) which...
I just read through the [release article on meteor](https://blog.meteor.com/meteor-1-8-erases-the-debts-of-1-7-77af4c931fe3), which promises significant build time improvements when using the new API. Do you plan on implementing those? I know, nobody likes...
While working on multiple files, suddenly I got an error from meteor that relative `.ts` imports were failing. > Error: Cannot find module './Foo.ts' I had seen no errors appear...
Some npm packages might need babel plugins to work properly such as `styled-components`. When doing SSR, it needs a babel plugin to sync client and server classNames. [See more](https://www.styled-components.com/docs/tooling#babel-plugin) However,...
Hi, Given the following import statement ```typescript import { promisifyMeteorCall } from 'imports/utils/meteor'; ``` and the following tsconfig.json ```json { "compilerOptions": { "allowJs": true, "allowSyntheticDefaultImports": true, "alwaysStrict": true, "baseUrl": ".",...
SourceMaps don't seem to be working with latest version of Meteor. Steps to reproduce (tested with Chrome): ~~~sh meteor create helloworld cd helloworld meteor add barbatus:typescript mv client/main.js client/main.ts #...
Typescript supports comments in tsconfig.json. Meteor crashes when you have them though.
I'm working on an existing project that uses Blaze and I'm trying to create a couple of React Components. I have something like this: ``` packages/ implementation/ ui/ components/ ComponentA.tsx...