Files

19 lines
396 B
JSON
Raw Permalink Normal View History

2022-12-20 20:47:51 +05:30
{
"compilerOptions": {
"sourceMap": true,
"jsx": "react",
"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,
"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,
"lib": ["ES2020", "DOM"]
2022-12-20 20:47:51 +05:30
},
"exclude": ["node_modules", "dist"],
"include": ["src"]
}