Files
sonarscantest/tsconfig.json

28 lines
646 B
JSON
Raw Permalink Normal View History

2026-03-30 08:39:00 +05:30
{
"compilerOptions": {
"target": "ESNext",
"useDefineForClassFields": true,
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"allowJs": false,
"skipLibCheck": true,
"esModuleInterop": false,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"module": "ESNext",
"moduleResolution": "Node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx"
},
"include": [
"src",
"src/redux/hooks",
"src/redux/store",
"src/redux/services"
],
"references": [
{ "path": "./tsconfig.node.json" }
]
}