Closed renovate[bot] closed 6 years ago
Merging #2 into master will not change coverage. The diff coverage is
n/a
.
@@ Coverage Diff @@
## master #2 +/- ##
=====================================
Coverage 100% 100%
=====================================
Files 1 1
Lines 17 17
Branches 8 8
=====================================
Hits 17 17
Continue to review full report at Codecov.
Legend - Click here to learn more
Δ = absolute <relative> (impact)
,ø = not affected
,? = missing data
Powered by Codecov. Last update e3cefdc...dde4fd7. Read the comment docs.
This Pull Request updates dependency gts from
^0.7.1
to^0.8.0
Note: This PR was created on a configured schedule ("after 10pm,before 5am") and will not receive updates outside those times.
Release Notes
### [No esModuleInterop and allowSyntheticDefaultImports](https://github.com/google/ts-style/releases/v0.8.0) [Compare Source](https://github.com/google/ts-style/compare/v0.7.1...v0.8.0) This is a release with breaking changes. We no longer set the `esModuleInterop` and `allowSyntheticDefaultImports` in the default TypeScript config. These might be reasonable configurations for end-user application code, but for libraries these can be problematic. TypeScript users of such libraries must have these flags set as well for compilation to succeed. For example: `https://github.com/google/google-auth-library-nodejs/issues/381`. There are two ways to deal with this breaking change: * (recommended) change code using synthetic imports (`import fs from 'fs'`) back to using old style imports (`import * as fs from 'fs'`). * Add `"esModuleInterop": true` to your local `tsconfig.json`. Sorry for the churn. ##### Commits * d92f876 fix: also disable allowSyntheticDefaultImports (#184) * 94360af fix: disable esModuleInterop (#183) * b2b5bbd test: add more tests (#182) * 122fe81 fix(init): init package with better main, types (#179) ---This PR has been generated by Renovate Bot.