2022-12-20 20:47:51 +05:30
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"sourceMap": true,
|
|
|
|
|
"jsx": "react",
|
2026-05-22 12:52:37 -04:00
|
|
|
"target": "ES2020",
|
2023-10-06 13:44:06 +11:00
|
|
|
"module": "ES2020",
|
2022-12-20 20:47:51 +05:30
|
|
|
"allowJs": true,
|
2023-06-12 21:15:23 +10:00
|
|
|
"strict": true,
|
2022-12-20 20:47:51 +05:30
|
|
|
"esModuleInterop": true,
|
2026-05-22 12:52:37 -04:00
|
|
|
"moduleResolution": "bundler",
|
2024-01-21 23:50:56 +11:00
|
|
|
"resolveJsonModule": true,
|
2022-12-20 20:47:51 +05:30
|
|
|
"outDir": "dist",
|
2024-09-07 21:45:55 +08:00
|
|
|
"skipLibCheck": true,
|
2026-05-22 12:52:37 -04:00
|
|
|
"lib": ["ES2020", "DOM"]
|
2022-12-20 20:47:51 +05:30
|
|
|
},
|
|
|
|
|
"exclude": ["node_modules", "dist"],
|
|
|
|
|
"include": ["src"]
|
|
|
|
|
}
|