摘要:
// typings.d.ts declare module '*.json' { const value: any; export default value; } 在项目的根目录中找到的tsconfig.json文件,然后添加一个新行:“resolveJsonModule”:true, 需要在t 阅读全文
摘要:
在使用ts开发时,引入图片报错 import img from '../../assets/images/logo.png'; 找不到模块“../../assets/images/foo.png”或其相应的类型声明。 因为typescript无法识别非代码资源。我们需要主动的去声明这个module 阅读全文
摘要:
Issues checking service aborted - probably out of memory. Check the `memoryLimit` option in the ForkTsCheckerWebpackPlugin configuration.If increasing 阅读全文