2026-04-21 23:07:34 +03:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"target": "ES2022",
|
|
|
|
|
"module": "ES2022",
|
|
|
|
|
"moduleResolution": "bundler",
|
2026-07-11 07:00:59 +03:00
|
|
|
"lib": ["ES2022", "DOM"],
|
2026-04-21 23:07:34 +03:00
|
|
|
"outDir": "dist",
|
|
|
|
|
"rootDir": "src",
|
|
|
|
|
"strict": true,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
"declaration": true,
|
|
|
|
|
"sourceMap": true,
|
2026-07-11 07:00:59 +03:00
|
|
|
"isolatedModules": true,
|
|
|
|
|
"jsx": "react-jsx"
|
2026-04-21 23:07:34 +03:00
|
|
|
},
|
|
|
|
|
"include": ["src"],
|
|
|
|
|
"exclude": ["node_modules", "dist"]
|
|
|
|
|
}
|