mpesa-mz-sdk
Version:
SDK para integração com a API M-Pesa de Moçambique
17 lines • 423 B
JSON
// tsconfig.json
{
"compilerOptions": {
"target": "ES2018",
"module": "CommonJS",
"lib": ["ES2018"],
"declaration": true, // Gera arquivos .d.ts para tipos
"outDir": "./dist",
"rootDir": "./src",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist"]
}