Files
KLC-Website-Frontend/tsconfig.json
2026-03-20 19:43:27 +05:30

28 lines
646 B
JSON

{
"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" }
]
}