2026-05-12 19:38:23 +07:00
|
|
|
{
|
2026-05-13 15:28:25 +07:00
|
|
|
"compilerOptions": {
|
|
|
|
|
"target": "ESNext",
|
|
|
|
|
"module": "ESNext",
|
|
|
|
|
"moduleResolution": "bundler",
|
|
|
|
|
"strict": true,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"skipLibCheck": true,
|
2026-05-14 01:07:50 +07:00
|
|
|
"types": ["node"],
|
2026-05-13 15:28:25 +07:00
|
|
|
"outDir": "dist",
|
2026-05-13 16:57:07 +07:00
|
|
|
"rootDir": "src",
|
|
|
|
|
"experimentalDecorators": true,
|
2026-05-13 22:13:03 +07:00
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
|
"jsx": "react-jsx"
|
2026-05-13 15:28:25 +07:00
|
|
|
},
|
|
|
|
|
"include": ["src/**/*"],
|
|
|
|
|
"exclude": ["node_modules", "dist"]
|
|
|
|
|
}
|