momo-payment-api
Version:
payment momo lib develop by minhduc
18 lines (16 loc) • 748 B
JSON
{
"compilerOptions": {
"module": "CommonJS", // Quy định output module được sử dụng
"moduleResolution": "node", //
"target": "es5", // Target ouput cho code
"outDir": "lib", // Đường dẫn output cho thư mục build
"esModuleInterop": true /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables 'allowSyntheticDefaultImports' for type compatibility. */,
"strict": true /* Enable all strict type-checking options. */,
"skipLibCheck": true /* Skip type checking all .d.ts files. */,
"baseUrl": ".", // Đường dẫn base cho các import
"noImplicitAny": false
},
"files": ["src/type.d.ts"],
"include": ["src"],
"exclude": ["node_modules", "test"]
}