本篇文章介绍typescript那些。
ts-loader会调用typescript去编译.ts,typescript会读取tsconfig.json配置来决定如何编译。
在tsx文件中使用样式,需要在d.ts文件中添加全局声明,否则编辑器会提示找不到样式文件。
declare module '*.scss' { const content: any; export default content; }
本篇文章介绍typescript那些。
ts-loader会调用typescript去编译.ts,typescript会读取tsconfig.json配置来决定如何编译。
在tsx文件中使用样式,需要在d.ts文件中添加全局声明,否则编辑器会提示找不到样式文件。
declare module '*.scss' { const content: any; export default content; }