使用绝对 Typescript 导入汇总
Rollup with absolute Typescript imports
- 来源:此处:https://github.com/arvigeus/roll-on-slow
- 输出束:dist
- 构建日志:build.log
Rollup 很好地捆绑了它,但它会针对错误的源映射抛出一些警告 (Error when using sourcemap for reporting an error: Can't resolve original location of error.
)。问题的根源似乎是 @babel/preset-react
development: true
(将其设置为 false
会使警告消失)。我做错了什么,或者这是预期的行为?生成的代码对我来说似乎很好...
还有一个关于 'this' has been rewritten to 'undefined'
的警告,似乎是相关的,因为它会在关闭该选项时消失。
最后,我决定禁用 development: true
并将其设置为 false
。在构建库时绝对不应该是这样。
- 来源:此处:https://github.com/arvigeus/roll-on-slow
- 输出束:dist
- 构建日志:build.log
Rollup 很好地捆绑了它,但它会针对错误的源映射抛出一些警告 (Error when using sourcemap for reporting an error: Can't resolve original location of error.
)。问题的根源似乎是 @babel/preset-react
development: true
(将其设置为 false
会使警告消失)。我做错了什么,或者这是预期的行为?生成的代码对我来说似乎很好...
还有一个关于 'this' has been rewritten to 'undefined'
的警告,似乎是相关的,因为它会在关闭该选项时消失。
最后,我决定禁用 development: true
并将其设置为 false
。在构建库时绝对不应该是这样。