sozsoft-platform/ui/tsconfig.json
Sedat ÖZTÜRK d982a3ce42 Genel hata kontrolü ve düzenlemeler
npx tsc --noEmit --pretty false
dotnet build --no-restore --nologo --verbosity quiet
2026-07-10 11:18:20 +03:00

25 lines
654 B
JSON

{
"compilerOptions": {
"target": "ESNext",
"useDefineForClassFields": true,
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"allowJs": false,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": false,
"module": "ESNext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
"paths": {
"@/*": ["./src/*"]
}
},
"include": ["src", "index.d.ts"],
"exclude": ["node_modules"],
"references": [{ "path": "./tsconfig.node.json" }]
}