Skip to content

Commit b5f993a

Browse files
committed
update to ts/tsx + logo in ts
1 parent 3d52208 commit b5f993a

25 files changed

+5423
-6827
lines changed

bin/webpack.config.example.js

+12
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,24 @@ const config = {
3535
},
3636
],
3737
},
38+
{
39+
test: /\.html$/,
40+
use: 'raw-loader'
41+
},
42+
{
43+
test: /\.tsx?$/,
44+
exclude: /node_modules/,
45+
use: [
46+
{loader:`babel-loader`},
47+
{loader:`ts-loader`}]
48+
},
3849
{
3950
test: /\.css$/,
4051
use: [
4152
{loader:`css-loader`},
4253
],
4354
},
55+
4456
{
4557
test: /\.js$/,
4658
loader: `babel-loader`,

0 commit comments

Comments
 (0)