ts-project-loader
Advanced tools
Comparing version 0.1.0 to 0.1.1
# Changelog | ||
## v0.1.1 | ||
- Fix output path for declaration files | ||
## v0.1.0 | ||
- Initial version |
@@ -230,6 +230,4 @@ "use strict"; | ||
function emitDeclarationFile(loader, compilation, tscBuildResult) { | ||
const outputPath = loader.rootContext || | ||
compilation.compiler.context || | ||
getWebpackOutputPath(compilation.compiler) || | ||
'./'; | ||
const outputPath = getWebpackOutputPath(compilation.compiler) || | ||
'./dist'; | ||
// console.info('** Start emit declarations'); | ||
@@ -236,0 +234,0 @@ tscBuildResult.data.files.forEach((tsFile) => { |
@@ -1,2 +0,2 @@ | ||
declare const _default: "0.1.0"; | ||
declare const _default: "0.1.1"; | ||
export default _default; |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.default = '0.1.0'; | ||
exports.default = '0.1.1'; |
@@ -41,3 +41,3 @@ { | ||
"types": "./dist/index.d.ts", | ||
"version": "0.1.0" | ||
"version": "0.1.1" | ||
} |
81094
1824