@vepler/http-client
Version:
A flexible and extensible API service library for making HTTP requests with built-in authentication support for bearer tokens and API keys.
24 lines (22 loc) • 1.09 kB
JSON
{
"compilerOptions": {
"target": "es5", // Target ECMAScript version
"module": "commonjs", // Output module format (for Node.js)
"lib": ["es6", "dom"], // Available library files
"outDir": "dist", // Output directory for compiled JavaScript files
"rootDir": "src", // Root directory of input files
"strict": true, // Enable strict type-checking
"esModuleInterop": true, // Allow default imports from modules with no default export
"moduleResolution": "node", // Module resolution strategy
"resolveJsonModule": true, // Allows importing JSON modules
"sourceMap": true, // Generate source maps,
"declaration": true
},
"types": ["node", "jest"],
"typeRoots": [
"./src/types",
"./node_modules/@types"
],
"include": ["src/**/*.ts"], // Files to include in compilation
"exclude": ["node_modules", "dist"] // Files to exclude from compilation
}