Files
openapi-ui/tsconfig.json
typescreep 11b8de2537 init
2025-05-23 07:34:48 +03:00

34 lines
899 B
JSON

{
"compilerOptions": {
"baseUrl": "src",
"target": "ESNext",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
"types": ["vite/client"],
"paths": {
"api/*": ["./api/*"],
"components/*": ["./components/*"],
"constants/*": ["./constants/*"],
"localTypes/*": ["./localTypes/*"],
"mocks/*": ["./mocks/*"],
"pages/*": ["./pages/*"],
"store/*": ["./store/*"],
"templates/*": ["./templates/*"],
"utils/*": ["./utils/*"]
}
},
"include": ["src"]
}