gamma-help-box
Version:
Gamma Help Box is a React component that provides a floating help widget for customer support, built with framer-motion for animations.
21 lines (20 loc) • 635 B
JSON
{
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"lib": ["DOM", "ESNext"],
"jsx": "react-jsx", // ← this is required!
"moduleResolution": "Node",
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"declaration": true, // for building npm package
"emitDeclarationOnly": false, // you can toggle this depending on your build tool
"outDir": "dist", // build output directory
"baseUrl": ".",
"resolveJsonModule": true
},
"include": ["src"],
"exclude": ["node_modules", "dist", "tests", "jest.setup.ts"]
}