Skip to content

Commit

Permalink
fix: disable declaration emission
Browse files Browse the repository at this point in the history
To fix the type error in eslint.config.ts.
typescript-eslint/typescript-eslint#10508 (comment)

It's not necessary in our project anyway.
  • Loading branch information
haoqunjiang committed Feb 10, 2025
1 parent e8c0319 commit 3ba85d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"moduleResolution": "NodeNext",
"allowImportingTsExtensions": true,
"strict": true,
"declaration": true,
"declaration": false,
"noImplicitOverride": true,
"noUnusedLocals": true,
"esModuleInterop": true,
Expand Down

0 comments on commit 3ba85d2

Please sign in to comment.