messaggera
Version:
This script allows you to easily integrate a chat widget into your website. It dynamically loads the necessary resources and initializes the chat widget for your website. ## Installation
14 lines • 631 B
JSON
{
"compilerOptions": {
"target": "es5", // Target ES5 for compatibility
"module": "esnext", // Use ES modules for tree-shaking
"lib": ["dom", "es6"], // Include DOM and ES6 libraries
"declaration": true, // Generate .d.ts files
"outDir": "./dist", // Output directory for compiled files
"strict": true, // Enable strict type-checking
"esModuleInterop": true, // Enable ES module interop
"skipLibCheck": true, // Skip library checking
"forceConsistentCasingInFileNames": true // Ensure consistent file naming
},
"include": ["index.ts"] // Include your entry file
}