analytics-switch/tsconfig.json
Tudor Stanciu 14f1b11263 Merged PR 106: chore: upgrade package version to 1.1.0 and refactor codebase to TypeScript
chore: upgrade package version to 1.1.0 and refactor codebase to TypeScript

- Updated package version in package.json from 1.0.1 to 1.1.0.
- Changed main entry point to use built files in dist directory.
- Removed Babel configuration and build scripts in favor of tsup.
- Deleted copy-files script as it is no longer needed.
- Refactored AnalyticsSwitch component from JavaScript to TypeScript.
- Added unit tests for AnalyticsSwitch component.
- Created new TypeScript files for UmamiAnalytics and MatomoAnalytics components.
- Implemented custom hooks for loading Umami and Matomo scripts.
- Added TypeScript types for analytics components and props.
- Set up TypeScript configuration and build process with tsup.
- Configured Vitest for testing with setup files and coverage reporting.
2025-08-10 18:02:52 +00:00

32 lines
787 B
JSON

{
"compilerOptions": {
"target": "ES2020",
"useDefineForClassFields": true,
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"module": "ESNext",
"skipLibCheck": true,
"types": ["vitest/globals", "@testing-library/jest-dom"],
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
/* Linting */
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
/* Declaration */
"declaration": true,
"declarationMap": true,
"outDir": "./dist"
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist", "**/*.test.*", "**/*.spec.*"]
}