mirror of
https://github.com/usebruno/bruno.git
synced 2025-05-05 15:32:58 +00:00
* Add @usebruno/requests package with digest authentication support --------- Co-authored-by: sanjai0py <sanjailucifer666@gmail.com> Co-authored-by: ramki-bruno <ramki@usebruno.com>
21 lines
557 B
JSON
21 lines
557 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"module": "ESNext",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"outDir": "./dist",
|
|
"rootDir": "./src",
|
|
"resolveJsonModule": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"moduleResolution": "node",
|
|
"declaration": true,
|
|
"declarationDir": "./dist/types",
|
|
"allowJs": true,
|
|
"checkJs": false
|
|
},
|
|
"include": ["src/**/*.ts", "src/**/*.tsx", "src/**/*.js"],
|
|
"exclude": ["node_modules", "dist"]
|
|
} |