quickbooks-api
Version:
A modular TypeScript SDK for seamless integration with Intuit QuickBooks APIs. Provides robust authentication handling and future-ready foundation for accounting, payments, and commerce operations.
34 lines (29 loc) • 699 B
JSON
{
"compilerOptions": {
// Enable latest features
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "bundler",
// Bundler mode
"outDir": "./dist",
"rootDir": "./src",
"declaration": true,
// Best practices
"strict": true,
"skipLibCheck": true,
"noFallthroughCasesInSwitch": true,
// Some stricter flags (disabled by default)
"noUnusedLocals": true,
"noUnusedParameters": true,
"noPropertyAccessFromIndexSignature": false,
// Add these critical options
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"esModuleInterop": true
},
"tsc-alias": {
"resolveFullPaths": true,
"verbose": false
},
"include": ["./src/**/*"]
}