Skip to content

Commit 79403bd

Browse files
committed
functional changes from #1408
1 parent 9dd78b7 commit 79403bd

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

cli/asc.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ export interface MemoryStream extends OutputStream {
5656
}
5757

5858
/** Compiler options. */
59-
interface CompilerOptions {
59+
export interface CompilerOptions {
6060
/** Prints just the compiler's version and exits. */
6161
version?: boolean;
6262
/** Prints the help message and exits. */
@@ -146,7 +146,7 @@ interface CompilerOptions {
146146
}
147147

148148
/** Compiler API options. */
149-
interface APIOptions {
149+
export interface APIOptions {
150150
/** Standard output stream to use. */
151151
stdout?: OutputStream;
152152
/** Standard error stream to use. */

cli/asc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,7 @@ exports.main = function main(argv, options, callback) {
309309

310310
// Look up extended asconfig and repeat
311311
if (asconfig.extends) {
312-
asconfigPath = optionsUtil.resolvePath(asconfig.extends, asconfigDir);
312+
asconfigPath = optionsUtil.resolvePath(asconfig.extends, asconfigDir, true);
313313
asconfigFile = path.basename(asconfigPath);
314314
asconfigDir = path.dirname(asconfigPath);
315315
if (seenAsconfig.has(asconfigPath)) break;

0 commit comments

Comments
 (0)