This repository was archived by the owner on Aug 22, 2025. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22 "name" : " @snapshot-labs/strategies" ,
33 "version" : " 0.1.0" ,
44 "main" : " dist/index.js" ,
5+ "module" : " dist/index.js" ,
56 "types" : " dist/index.d.ts" ,
7+ "typesVersions" : {
8+ "*" : {
9+ "*" : [" dist/*" ]
10+ }
11+ },
612 "exports" : {
7- "." : " ./dist/index.js"
13+ "." : {
14+ "types" : " ./dist/index.d.ts" ,
15+ "require" : " ./dist/index.js" ,
16+ "import" : " ./dist/index.js" ,
17+ "default" : " ./dist/index.js"
18+ },
19+ "./package.json" : " ./package.json"
820 },
921 "files" : [
1022 " dist"
Original file line number Diff line number Diff line change @@ -3,8 +3,11 @@ import strategies from './strategies';
33import validations from './validations' ;
44import utils from './utils' ;
55
6- export default {
6+ const snapshot = {
77 strategies,
88 validations,
99 utils
1010} ;
11+
12+ export default snapshot ;
13+ export { strategies , validations , utils } ;
Original file line number Diff line number Diff line change 66 "moduleResolution" : " node" ,
77 "strict" : true ,
88 "declaration" : true ,
9+ "declarationMap" : true ,
910 "noUnusedLocals" : true ,
1011 "esModuleInterop" : true ,
1112 "noImplicitAny" : false ,
1213 "resolveJsonModule" : true ,
1314 "allowSyntheticDefaultImports" : true ,
14- "skipLibCheck" : true
15+ "skipLibCheck" : true ,
16+ "forceConsistentCasingInFileNames" : true
1517 },
1618 "include" : [" src" , " test" ],
17- "files" : [" ./src/typings.d.ts" ]
19+ "files" : [" ./src/typings.d.ts" ],
20+ "exclude" : [" node_modules" , " dist" , " test" ]
1821}
You can’t perform that action at this time.
0 commit comments