gpt4 book ai didi

TypeScript 2.3.1 在 SystemJS plunk 中的重大变化

转载 作者:搜寻专家 更新时间:2023-10-30 21:06:57 26 4
gpt4 key购买 nike

这里是 official Angular + TypeScript plunk使用 SystemJS 0.19.31 并已更改为使用 TypeScript 2.3.0。

当 SystemJS 配置相同时 is changed to TypeScript 2.3.1 or 2.3.2

'typescript': 'npm:typescript@2.3.1/lib/typescript.js'

它只是停止工作。控制台中没有错误。

TypeScript 2.3.1 有什么问题?这是一个已知问题吗?问题是否特定于当前设置?

最佳答案

这是 SystemJS 模块格式自动检测的问题。

它有这个正则表达式来检查源是否是 es6 并且需要转译:

  // good enough ES6 module detection regex - format detections not designed to be accurate, but to handle the 99% use case
var esmRegEx = /(^\s*|[}\);\n]\s*)(import\s*(['"]|(\*\s+as\s+)?[^"'\(\)\n;]+\s*from\s*['"]|\{)|export\s+\*\s+from\s+["']|export\s*(\{|default|function|class|var|const|let|async\s+function))/;

果然,TypeScript 2.3.1 和 2.3.2 在与正则表达式匹配的源代码中有这个注释:

  // For an export of a module, we may be in a declaration file, and it may be accessed elsewhere. E.g.:
// declare module "a" { export type T = number; }
// declare module "b" { import { T } from "a"; export const x: T; }

因此,在调试时,您可以看到 SystemJS 加载了一个转译器 (typescript),确定它是 es6 并且需要转译,加载一个转译器,...,并且永远不会转译您的代码 (主.ts)

typescript 的正确格式是“全局”,因此将其添加到顶层的 SystemJS 配置中应该可以修复它:

  meta: {typescript: {format: 'global'}}

关于TypeScript 2.3.1 在 SystemJS plunk 中的重大变化,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43940168/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com