UNPKG

anypay-ts

Version:

TypeScript библиотека для работы с платёжной системой AnyPay

14 lines (13 loc) 568 B
{ "compilerOptions": { "target": "ES2020", // на какой JS компилировать "module": "CommonJS", // для Node.js "declaration": true, // генерация .d.ts для типизации "outDir": "dist", // куда компилировать "strict": true, // строгая типизация "esModuleInterop": true, // совместимость require/import "forceConsistentCasingInFileNames": true, "skipLibCheck": true }, "include": ["src/**/*"] }