Yi Lei

Results 2 issues of Yi Lei

使用ts时根据Issues里面的建议,发现配置完后随便加载一个组件就500多kb,经过多方查询发现是把icon给加载进来了,完全没用到就白白多500多Kb,这个要怎么解决 ![image](https://user-images.githubusercontent.com/25970534/53324968-23dc8480-391d-11e9-8105-241d53dbe26e.png) tsconfig.json部分配置 ![image](https://user-images.githubusercontent.com/25970534/53324988-32c33700-391d-11e9-8fa3-e2783196c4dd.png) webpack.config.js部分配置 ![image](https://user-images.githubusercontent.com/25970534/53325032-48386100-391d-11e9-9520-b4ecf84f3a71.png) 期望按需加载,但是实际只要引入跟icon有关的组件都是500多Kb,太大了 typescript: 3.1 antd: 3.13.6 webpack: 4.29.5

tsconfig.json文件配置 { "compilerOptions": { "outDir": "./dist/", "sourceMap": true, "module": "commonjs", "jsx": "react", "target": "es5", "declaration": true, "lib": ["es6", "es7", "dom", "esnext"], "moduleResolution": "node", "forceConsistentCasingInFileNames": true, "noImplicitReturns": true, "noImplicitThis": true, "noImplicitAny":...