Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

react-google-geocoding

Package Overview
Dependencies
Maintainers
0
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-google-geocoding - npm Package Compare versions

Comparing version 0.2.2 to 0.2.3

5

package.json
{
"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"
}
}

21

tsconfig.json
{
"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"],

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc