Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/core/src/context.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export interface Context {
[symbols.intercept]: Dict
/** @experimental */
root: this
baseUrl?: string
baseUrl?: string | undefined
events: EventsService
logger: LoggerService
reflect: ReflectService
Expand Down
2 changes: 1 addition & 1 deletion packages/include/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export class Include extends EntryTree {
private readonly: boolean
private content?: string
private data?: EntryOptions[]
private writeTask?: NodeJS.Timeout
private writeTask?: NodeJS.Timeout | undefined

constructor(ctx: Context, public config: Include.Config) {
super(ctx)
Expand Down
2 changes: 1 addition & 1 deletion packages/loader/src/config/entry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export class Entry {
public subgroup?: EntryGroup
public subtree?: EntryTree

_initTask?: Promise<void>
_initTask?: Promise<void> | undefined

constructor(public loader: Loader) {
this.ctx = loader.ctx.extend({ [Entry.key]: this })
Expand Down