热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

织梦模板导入了找不到html,在webpack中导入html文件时找不到模块错误

尝试使用html-loader插件在TypeScript中导入html:importbuttonHtmlfrom.button.html;出现TypeScript错误

尝试使用

html-loader插件在TypeScript中导入html:

import buttonHtml from './button.html';

出现TypeScript错误:

TS2307: Cannot find module ‘./button.html’

Webpack配置:

const path = require('path');

module.exports = {

entry: {

'background.js':path.resolve(__dirname,'./background.ts'),'content.js': path.resolve(__dirname,'./content.ts')

},devtool: 'inline-source-map',module: {

rules: [

{

test: /\.tsx?$/,use: 'ts-loader',exclude: /node_modules/

},{

test: /\.html$/,exclude: /node_modules/,use: {loader: 'html-loader'}

}

]

},resolve: {

extensions: [ ".tsx",".ts",".js" ]

},output: {

filename: '[name]',path: path.resolve(__dirname,'dist')

}

};



推荐阅读
author-avatar
AAAAaaaa叶子
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有