TypeScript 5.3 Beta
TypeScript 5.3 已发布 Beta 测试版。 主要变化 支持import attributes 提案的最近更新 switch (true)Narrowing Narrowing On Comparisons to Booleans 检查对实例字段的super属性访问 针对类型的交互式嵌套提示 (Interactive Inlay Hints) 跳过 JSDoc 解析以进行优化 合并 tsserverlibrary.js和typescript.js import attributes import attributes 的一个用例是向运行时提供有关模块预期格式的信息。 // We only want this to be interpreted as JSON, // not a runnable/malicious JavaScript file with a `.json` extension. import obj from "./something.json" with { type: "json" }; TypeScript 不会检查这些属性的内容,因为它们...

