File tree Expand file tree Collapse file tree 4 files changed +6
-13
lines changed
Expand file tree Collapse file tree 4 files changed +6
-13
lines changed Original file line number Diff line number Diff line change 1+ export { default as get } from "./lib/get" ;
2+ export { default as set } from "./lib/set" ;
3+ export { default as split } from "./lib/split" ;
4+ export { default as remove } from "./lib/remove" ;
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1717 ]
1818 },
1919 "include" : [
20+ " index.ts" ,
2021 " lib/**/*"
2122 ]
2223}
Original file line number Diff line number Diff line change @@ -4,9 +4,7 @@ const PRODUCTION = process.env.NODE_ENV === "production";
44
55
66const config = {
7- entry : [
8- "./lib/index.ts"
9- ] ,
7+ entry : "./index.ts" ,
108 mode : PRODUCTION ? "production" : "development" ,
119 context : __dirname ,
1210 target : "web" ,
@@ -46,12 +44,6 @@ const config = {
4644
4745 optimization : {
4846 minimizer : [ new TerserPlugin ( ) ]
49- } ,
50-
51- devServer : {
52- port : 8071 ,
53- disableHostCheck : true ,
54- host : "0.0.0.0"
5547 }
5648} ;
5749
You can’t perform that action at this time.
0 commit comments