Skip to content
This repository was archived by the owner on Feb 19, 2020. It is now read-only.
This repository was archived by the owner on Feb 19, 2020. It is now read-only.

not compatible with recent "@babel/runtime" #78

@zetekla

Description

@zetekla

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 7.4.0 it breaks

{
  "compilerOptions": {
    "baseUrl": "./",
    "target": "es5",
    "lib": [
      "dom",
      "dom.iterable",
      "esnext"
    ],
    "module": "commonjs",
    "moduleResolution": "node",
    "skipLibCheck": true,
    "allowSyntheticDefaultImports": true,
    "sourceMap": true,
    "allowJs": true,
    "jsx": "react",
    "alwaysStrict": true,
    "experimentalDecorators": true,
    "emitDecoratorMetadata": true,
    "rootDir": "src",
    "forceConsistentCasingInFileNames": true,
    "noImplicitReturns": true,
    "noImplicitThis": true,
    "noImplicitAny": true,
    "strictNullChecks": true,
    "suppressImplicitAnyIndexErrors": true,
    "noUnusedLocals": true,
    "types": ["meteor-typings", "node", "node_modules/@types"],
    "paths": {
      "@imports/*": ["imports/*"]
    }
  },
  "include": [
    "client/**/*",
    "server/**/*",
    "imports/**/*"
  ],
  "exclude": [
    "node_modules",
    ".meteor"
  ],
  "files": [
    "typings/index.d.ts"
  ]
}

Also, I cannot add
"esModuleInterop": true, and "resolveJsonModule": true, my app just no longer works when I added these lines.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions