Skip to content

Releases: blakeembrey/typescript-simple-loader

Deprecation

17 Oct 01:21
Compare
Choose a tag to compare

Added

  • Deprecation message to the README - moving to common foundation @TypeStrong

Changed

  • Support .tsx in README examples

Normalize `ignoreWarnings`

12 Sep 03:15
Compare
Choose a tag to compare

Changed

  • The ignoreWarnings is normalized on input (makes usage with query object or string easier)

Remove TypeScript Peer Dependency

06 Sep 21:41
Compare
Choose a tag to compare

Removed

  • Remove TypeScript from peerDependencies all together

Remove TypeScript 1.5 restriction

06 Sep 21:36
Compare
Choose a tag to compare

Removed

  • No more typescript.definition field in package.json

Changed

  • Peer dependency of typescript@* to allow people to work with 1.6 betas

Override Source Map Option

06 Sep 21:31
Compare
Choose a tag to compare

Changed

  • Always override TypeScript sourceMap option

TypeScript Stable

21 Jul 01:05
Compare
Choose a tag to compare

Changed

  • Reference minimum version of typescript@^1.5.0

Minor Maintenance

15 Jul 04:20
Compare
Choose a tag to compare

Changed

  • Use arrify for ignoreWarnings option
  • Use whatever line endings are normal (not sure if best behaviour)
  • Always output diagnostic code with error messages

TSConfig

14 Jul 03:10
Compare
Choose a tag to compare

Changed

  • Replace custom tsconfig.json resolve and parse logic with tsconfig module

Webpack Context

10 Jul 21:37
Compare
Choose a tag to compare

Noticed a minor breaking change bug in the way tsconfig.json was cached/resolved. If you used the same compilation runtime on multiple entry points with different tsconfig.json, it would only use the first one if the context was the same. Now Webpack is resolving tsconfig.json from the context option.

Changed

  • tsconfig.json was previously resolving based on root file name - it now uses context

Ignore Warnings

07 Jul 21:16
Compare
Choose a tag to compare

Added

  • Ability to ignore compiler warnings via query string
  • Add dependencies of all files (not just declarations) because some files may not compile properly and need to reload
  • Output global diagnostic messages

Changed

  • Error message when emit fails has been changed to remove blame on not finding the file