-
Notifications
You must be signed in to change notification settings - Fork 279
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
babel模式编译ts,无法识别声明文件 #227
Comments
临时方案:
{
"compilerOptions": {
- "types": [xxx],
+ "typeRoots": ["./typings"]
}
}
+ declare module "*.less";
|
这个有用,但是感觉是build的时候gulp找不到typing文件了。期待dumi3可以修复这个问题。 |
@huzhongchun 请问最后是怎么解决的呢?目前 [email protected] 仍然有这个问题 |
目前png仍然存在此问题 |
在index.ts头部显示引用 lerna的话注意在子包的src下添加声明文件,子包中不读取根目录下的 |
I run into the same issue. |
用了这种方案还是不行 |
father 4 已发布,可尝试升级到最新版:https://github.com/umijs/father/blob/master/docs/guide/migrate.md 旧版本不再维护,感谢支持 |
用了方案还是不行,只能升级至 father 4 |
根目录下的typings.d.ts,配置如下:
执行father build --cjs babel,提示如下
尝试把typings.d.ts放到src下也是同样的问题
@sorrycc 大佬帮忙看下啊
The text was updated successfully, but these errors were encountered: