Files
web-crm.mcmed.ru/frontend/tsconfig.json
Viktoria Polyakova 4fb101c5db Init
2026-01-25 08:57:38 +00:00

43 lines
972 B
JSON

{
"compilerOptions": {
/* Base options */
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"skipLibCheck": true,
"target": "ES2015",
"verbatimModuleSyntax": false,
"allowJs": true,
"resolveJsonModule": true,
"moduleDetection": "force",
"isolatedModules": true,
/* Strictness */
"strict": true,
"noUncheckedIndexedAccess": true,
"strictPropertyInitialization": false,
"noFallthroughCasesInSwitch": true,
"forceConsistentCasingInFileNames": true,
"experimentalDecorators": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
/* TypeScript transpilation */
"noEmit": true,
"jsx": "react-jsx",
"moduleResolution": "node",
"module": "esnext",
/* Code runs in DOM */
"lib": ["dom", "dom.iterable", "esnext"],
/* Types */
"types": ["vite/client"],
/* Aliases */
"paths": {
"@/*": ["./src/*"]
}
},
"include": ["src"]
}