Skip to content

Commit 2551704

Browse files
committed
Generate a new release.
1 parent 1f9302a commit 2551704

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

release/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ function reportErrors(errors, typescript, ignore = []) {
132132
if (tsConfig.error) {
133133
console.log(tsConfig.error.messageText);
134134
}
135-
let parsed = typescript.parseJsonConfigFileContent(tsConfig.config || {}, getTsconfigSystem(typescript), path.resolve(projectDirectory), compilerOptions, path.basename(tsConfigFileName));
135+
let parsed = typescript.parseJsonConfigFileContent(tsConfig.config || {}, getTsconfigSystem(typescript), path.resolve(projectDirectory), compilerOptions, tsConfigFileName);
136136
rawConfig = parsed.raw;
137137
tsConfigContent = parsed.raw;
138138
if (parsed.errors) {

release/project.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ function src() {
7676
base = path.resolve(this.projectDirectory, this.options["rootDir"]);
7777
}
7878
const _a = this.rawConfig, { extends: _extends } = _a, config = __rest(_a, ["extends"]);
79-
const { fileNames, errors } = this.typescript.parseJsonConfigFileContent(config, this.typescript.sys, path.resolve(this.projectDirectory), undefined, path.basename(this.configFileName));
79+
const { fileNames, errors } = this.typescript.parseJsonConfigFileContent(config, this.typescript.sys, path.resolve(this.projectDirectory), undefined, this.configFileName);
8080
for (const error of errors) {
8181
console.log(error.messageText);
8282
}

0 commit comments

Comments
 (0)