You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Run tsc on ./dist/index.d.ts: pnpm run typecheck ./dist/index.d.ts
Describe the bug
The declare keyword is missing in front of the const version = "x.x.x".
Additional context
No response
Logs
vue-tsc --noEmit "./dist/index.d.ts""--noEmit"
dist/index.d.ts:8:1 - error TS1046: Top-level declarations in .d.ts files must start with either a 'declare' or 'export' modifier.
8 const version = "3.14.5";~~~~~
Found 1 error in dist/index.d.ts:8
The text was updated successfully, but these errors were encountered:
Environment
Node.js v22.11.0
tsc 5.6.3
Reproduction
Run tsc on
./dist/index.d.ts
:pnpm run typecheck ./dist/index.d.ts
Describe the bug
The
declare
keyword is missing in front of theconst version = "x.x.x"
.Additional context
No response
Logs
The text was updated successfully, but these errors were encountered: