react-google-geocoding
Advanced tools
Comparing version 0.2.2 to 0.2.3
{ | ||
"name": "react-google-geocoding", | ||
"version": "0.2.2", | ||
"version": "0.2.3", | ||
"main": "dist/index.cjs.js", | ||
@@ -54,4 +54,5 @@ "module": "dist/index.esm.js", | ||
"dependencies": { | ||
"lodash.debounce": "^4.0.8" | ||
"lodash.debounce": "^4.0.8", | ||
"react-google-hooks": "^0.2.2" | ||
} | ||
} |
{ | ||
"compilerOptions": { | ||
"target": "ES5", | ||
"module": "NodeNext", | ||
"declaration": true, | ||
"outDir": "dist", | ||
"strict": true, | ||
"jsx": "react", | ||
"esModuleInterop": true, | ||
"moduleResolution": "NodeNext" | ||
"target": "ES5", // This ensures compatibility with older JS versions. | ||
"module": "CommonJS", // CommonJS is widely supported in Node.js and bundlers like Webpack. | ||
"declaration": true, // Generates .d.ts files for TypeScript support. | ||
"outDir": "dist", // Output directory for compiled files. | ||
"strict": true, // Enable strict type-checking options. | ||
"jsx": "react", // JSX support for React. | ||
"esModuleInterop": true, // Ensures compatibility with CommonJS and ES modules. | ||
"moduleResolution": "Node", // Use Node.js-style module resolution. | ||
"skipLibCheck": true, // Skips type-checking of declaration files for faster builds. | ||
"forceConsistentCasingInFileNames": true, // Enforces consistent file casing. | ||
"lib": ["ES5", "DOM"], // Target ES5 features and browser DOM APIs. | ||
"allowJs": true, // Allows compilation of JS files. | ||
"resolveJsonModule": true // Allows import of JSON files. | ||
}, | ||
@@ -12,0 +17,0 @@ "include": ["src"], |
55725
960
2
+ Addedreact-google-hooks@^0.2.2
+ Addedreact-google-hooks@0.2.8(transitive)