File tree Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Original file line number Diff line number Diff line change 5
5
"main" : " index.js" ,
6
6
"module" : " index.esm.js" ,
7
7
"commonJs" : " index.cjs.js" ,
8
- "typings" : " types/ index.d.ts" ,
8
+ "typings" : " index.d.ts" ,
9
9
"sideEffects" : false ,
10
10
"author" : " Patrick Michalina <patrickmichalina@mac.com> (https://patrickmichalina.com)" ,
11
11
"license" : " MIT" ,
52
52
"tslint-immutable" : " ^6.0.1" ,
53
53
"typescript" : " ^3.7.5"
54
54
},
55
+ "peerDependencies" : {
56
+ "tslib" : " ^1.10.0"
57
+ },
55
58
"jest" : {
56
59
"testURL" : " http://localhost" ,
57
60
"collectCoverage" : true ,
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import pkg from './package.json'
3
3
4
4
export default [
5
5
{
6
- input : 'dist/lib/ index.js' ,
6
+ input : 'dist/index.js' ,
7
7
output : {
8
8
name : 'monads' ,
9
9
file : `dist/${ pkg . main } ` ,
Original file line number Diff line number Diff line change 4
4
"module" : " es2015" ,
5
5
"moduleResolution" : " node" ,
6
6
"lib" : [" es2015" , " dom" ],
7
- "outDir" : " dist/lib " ,
7
+ "outDir" : " dist" ,
8
8
"isolatedModules" : false ,
9
9
"experimentalDecorators" : true ,
10
10
"emitDecoratorMetadata" : true ,
22
22
"strictFunctionTypes" : true ,
23
23
"forceConsistentCasingInFileNames" : true ,
24
24
"declaration" : true ,
25
- "declarationDir" : " dist/types " ,
25
+ "declarationDir" : " dist" ,
26
26
"declarationMap" : true ,
27
27
"sourceMap" : true
28
28
},
You can’t perform that action at this time.
0 commit comments