新版本clean-webpack-plugin需要这样导入const { CleanWebpackPlugin }=require('clean-webpack-plugin')
2020-07-30
感谢老舅的分享,想要源代码的同学可以去我的github自取, 地址:https://github.com/liujin798006810/minProject
2020-07-24
讲师回答 / 西门老舅
if (document.exitFullscreen) { document.exitFullscreen(); } else if (document.webkitCancelFullScreen) { document.webkitCancelFullScreen(); ...
2020-07-22
讲师回答 / 西门老舅
ts用的比较多的是tslint插件,其他插件可以在官网找到,下面是地址:https://code.visualstudio.com/Docs/languages/typescript。主要看是开发angular还是react,可能会用到不同的插件。
2020-07-20
已采纳回答 / 西门老舅
其实引入的JS文件不是说在TS文件中不能用,用是没问题的。而是TS不认识这个JS中的定义,如jquery中的$,编辑器就会报错,所以才需要对应的d.ts文件。说白了TS还不那么智能,需要这种声明文件给出明确的定义方式。
2020-07-17
TS2339: Property 'insert' does not exist on type '{}'.
TS2339: Property 'singleton' does not exist on type '{}'.
TS2339: Property 'i' does not exist on type 'any[]'.
运行后,会有这个报错
TS2339: Property 'singleton' does not exist on type '{}'.
TS2339: Property 'i' does not exist on type 'any[]'.
运行后,会有这个报错
2020-07-17