Skip to content
This repository was archived by the owner on Oct 23, 2025. It is now read-only.
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
4 changes: 1 addition & 3 deletions lib/main.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
export { tsr, Config } from './tsr.js';
export { Logger } from './util/Logger.js';
export * from './util/error.js';
export { tsr } from './tsr.js';
1 change: 1 addition & 0 deletions tsconfig.lib.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
"lib": ["ES2023"],
"target": "ES2022",
"strict": true,

Copilot AI Jul 17, 2025

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Using emitDeclarationOnly without setting declaration prevents JavaScript files from being emitted, which will break the library's runtime output. Consider using declaration: true alongside or instead of emitDeclarationOnly to generate .d.ts files while still emitting .js bundles.

Suggested change
"strict": true,
"strict": true,
"declaration": true,

Copilot uses AI. Check for mistakes.
"emitDeclarationOnly": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
Expand Down