[Typescript] Resolving the Block-scoped Variable Error in TypeScript (moduleDetection)

const NAME = "Matt";

TypeScript is telling us we can't redeclare the name variable because it has already been declared inside of lib.dom.d.ts.

The index.ts file is being detected as a global script rather than a module. This is because, by default, TypeScript assumes that a file without any imports and exports is meant to be a global script.

 

If we add a export then it resolve problem:

const name = "Matt"

export {}

 

If we want to do it globally, we can use 'moduleDetection' option in tsconfig to force all js file are module

{
	"moduleDetection": "force"
}

 

posted @   Zhentiw  阅读(16)  评论(0编辑  收藏  举报
相关博文:
阅读排行:
· 阿里最新开源QwQ-32B,效果媲美deepseek-r1满血版,部署成本又又又降低了!
· Manus重磅发布:全球首款通用AI代理技术深度解析与实战指南
· 开源Multi-agent AI智能体框架aevatar.ai,欢迎大家贡献代码
· 被坑几百块钱后,我竟然真的恢复了删除的微信聊天记录!
· AI技术革命,工作效率10个最佳AI工具
历史上的今天:
2022-01-23 [JS Pattern] Provider Pattern
2022-01-23 [JS Pattern] Proxy pattern
2020-01-23 [AST Eslint] No console with schema options && isPrimitive
2020-01-23 [Javascript] Deep partial equal Object LooksLike
2020-01-23 [AST Eslint] No Console allowed
2020-01-23 [Algorithm] 234. Palindrome Linked List / Reverse linked list
2019-01-23 [Javascript] Write a Generator Function to Generate the Alphabet / Numbers
点击右上角即可分享
微信分享提示