redoc/tsconfig.json
Alex Varchuk 10400113fb
feat: initialize release candidate for v3.0.0
Co-authored-by: Roman Hotsiy <gotsijroman@gmail.com>
Co-authored-by: Alex Varchuk <olexandr.varchuk@gmail.com>
Co-authored-by: Oprysk Vyacheslav <vyacheslav@redocly.com>
Co-authored-by: Ivan Kropyvnytskyi <130547411+ivankropyvnytskyi@users.noreply.github.com>
Co-authored-by: Yevhen Pylyp <yevhen.pylyp@redocly.com>
Co-authored-by: Vladyslav Makarenko <vladyslav.makarenko@redocly.com>
Co-authored-by: Yevhenii Medviediev <yevhenii.medviediev@redocly.com>
Co-authored-by: Oleksii Horbachevskyi <oleksii.horbachevskyi@redocly.com>
Co-authored-by: volodymyr-rutskyi <rutskyi.v@gmail.com>
Co-authored-by: Adam Altman <adam@redoc.ly>
Co-authored-by: Andrew Tatomyr <andrew.tatomyr@redocly.com>
Co-authored-by: Anastasiia Derymarko <anastasiia@redocly.com>
Co-authored-by: Roman Marshevskyy <roman.marshevskyy@redoc.ly>
Co-authored-by: Lorna Mitchell <lorna.mitchell@redocly.com>
Co-authored-by: Taylor Krusen <taylor.krusen@redocly.com>
2025-10-24 17:55:59 +02:00

61 lines
1.4 KiB
JSON

{
"compilerOptions": {
"baseUrl": "./",
"strict": false,
"noEmit": false,
"jsx": "react-jsx",
"experimentalDecorators": true,
"lib": [
"es2015",
"es2016",
"es2017",
"dom",
"WebWorker.ImportScripts",
"esnext",
"DOM.Iterable"
],
"moduleResolution": "bundler",
"noImplicitAny": false,
"useDefineForClassFields": true,
"target": "ESNext",
"types": ["jest", "node", "@testing-library/jest-dom", "@jest/globals"],
"strictPropertyInitialization": false,
"strictNullChecks": true,
"resolveJsonModule": false,
"rootDir": "src",
"declaration": true,
"module": "ESNext",
"outDir": "lib",
"composite": true,
"tsBuildInfoFile": "lib/.tsbuildinfo",
"isolatedModules": true,
"noImplicitReturns": false,
"noImplicitThis": true,
"forceConsistentCasingInFileNames": true,
"allowJs": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"useUnknownInCatchVariables": false,
"noFallthroughCasesInSwitch": true,
"allowUnreachableCode": false,
"noUnusedParameters": true,
"noUnusedLocals": true,
"downlevelIteration": true,
"sourceMap": true,
"skipLibCheck": true
},
"compileOnSave": false,
"exclude": [
"node_modules",
"bundle",
".tmp",
"lib",
"redoc",
"bin",
"**/__tests__/**/*",
"src/testProviders.tsx",
"src/setupTests.ts"
],
"include": ["src"]
}