Skip to content

Commit

Permalink
Output types alongside JS files
Browse files Browse the repository at this point in the history
  • Loading branch information
meyer committed Oct 23, 2019
1 parent 235195f commit 8734ed9
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,8 @@
# Changelog

## v6.2.1
* [Output types alongside JS files, enable declaration maps](https://github.com/TypeStrong/ts-loader/pull/1026) - thanks @meyer!

## v6.2.0
* [Emitting .tsbuildinfo when using watch api](https://github.com/TypeStrong/ts-loader/pull/1017) - thanks @sheetalkamat!

Expand Down
4 changes: 2 additions & 2 deletions package.json
@@ -1,9 +1,9 @@
{
"name": "ts-loader",
"version": "6.2.0",
"version": "6.2.1",
"description": "TypeScript loader for webpack",
"main": "index.js",
"types": "dist/types/index.d.ts",
"types": "dist",
"scripts": {
"build": "tsc --version && tsc --project \"./src\"",
"lint": "tslint --project \"./src\"",
Expand Down
3 changes: 2 additions & 1 deletion src/tsconfig.json
Expand Up @@ -10,7 +10,8 @@
"moduleResolution": "node",
"declaration": true,
"outDir": "../dist",
"declarationDir": "../dist/types",
"declarationDir": "../dist",
"declarationMap": true,
"sourceMap": true
}
}

0 comments on commit 8734ed9

Please sign in to comment.