
疑难问题
woai3c_
FE/Nodejs/Rust 全栈
Github: https://github.com/woai3c
展开
-
webpack5 + babel 兼容 IE11 浏览器
【代码】webpack5 + babel 兼容 IE11 浏览器。原创 2022-10-24 10:08:14 · 1857 阅读 · 1 评论 -
rollup babel 配置
报错 是因为没有引入 依赖。原创 2022-06-16 15:08:03 · 1237 阅读 · 0 评论 -
使用 rollup 打包带有 uuid npm 包的项目时,打包产物中有 import crypto from ‘crypto‘ 代码.
在使用 uuid 包时:import { v4 as uuidv4 } from 'uuid';发现引用的这个 uuid 包没有 ts 声明,估计是这个问题导致 rollup 打包时找不到对应的包,所以打包产物中有 import crypto from 'crypto' 的代码,因为 uuid 引用了 crypto 这个内置包。在安装 @types/uuid ts 声明包后,这个问题成功解决,打包后的产物没有 import crypto from 'crypto' 这行代码。...原创 2022-03-29 15:50:20 · 986 阅读 · 0 评论 -
rollup + typescript 打包后无法结束的问题
最近用 rollup 和 typescript 写一个组件库,发现每次打包完成后总是不结束,程序一直卡着…就和上图一样卡着不动。花了半天时间排查,发现是 @rollup/plugin-typescript 和 typescript 依赖版本的问题。因为每次下载都是用的最新的依赖版本,所以这两个 npm 包之间的兼容性不太好,最后将这两个依赖降级后(依赖版本写死,@rollup/plugin-typescript 为 8.2.1,typescript 为 4.2.4),打包就正常了,不会一直卡着不结束。原创 2021-09-04 16:16:11 · 1157 阅读 · 0 评论 -
解决 Cannot read property ‘range‘ of null 错误
.eslintrc 配置文件加上:parserOptions: { ecmaFeatures: { legacyDecorators: true }, parser: 'babel-eslint',},rules : { "template-curly-spacing" : "off", "indent": ["error", 4, { "ignoredNodes": ["TemplateLiteral"] }]}...原创 2021-02-09 15:05:29 · 752 阅读 · 0 评论