ironlicensing-js/tsconfig.json
David Friedel ed66914a92 Implement IronLicensing JavaScript SDK
- LicenseClient for validation and activation
- Feature checking with hasFeature/requireFeature
- Trial management
- Purchase/checkout flow
- Offline caching with grace period
- License change events
- Browser/Node.js compatible storage
- Full TypeScript support
- Comprehensive README
2025-12-25 11:07:00 +00:00

19 lines
427 B
JSON

{
"compilerOptions": {
"target": "ES2020",
"module": "ESNext",
"moduleResolution": "bundler",
"lib": ["ES2020", "DOM"],
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"declaration": true,
"declarationMap": true,
"outDir": "dist",
"rootDir": "src"
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist"]
}