Files
bruno/packages/bruno-converters/tsconfig.json
Thim 95af071f09 Feat: Standalone Package to convert to Bruno collection (#2341)
added bruno-converters package

---------

Co-authored-by: lohit <lohit@usebruno.com>
2025-04-03 14:00:31 +05:30

20 lines
472 B
JSON

{
"compilerOptions": {
"target": "ES6",
"esModuleInterop": true,
"strict": true,
"skipLibCheck": true,
"jsx": "react",
"module": "ESNext",
"declaration": true,
"declarationDir": "types",
"sourceMap": true,
"outDir": "dist",
"moduleResolution": "node",
"emitDeclarationOnly": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true
},
"exclude": ["dist", "node_modules", "tests"]
}