2024-10-25 18:58:08 +00:00
|
|
|
{
|
2024-10-25 21:21:01 +00:00
|
|
|
"compilerOptions": {
|
2024-10-27 18:53:40 +00:00
|
|
|
"types": ["node"],
|
2024-10-27 18:33:05 +00:00
|
|
|
"jsx": "react-jsx",
|
2024-10-25 21:21:01 +00:00
|
|
|
"baseUrl": ".",
|
|
|
|
|
"module": "ESNext",
|
2024-10-27 18:33:05 +00:00
|
|
|
"target": "ESNext",
|
2024-10-25 21:21:01 +00:00
|
|
|
"allowJs": true,
|
|
|
|
|
"noImplicitAny": true,
|
|
|
|
|
"moduleResolution": "node",
|
|
|
|
|
"importHelpers": true,
|
|
|
|
|
"isolatedModules": true,
|
2024-10-27 18:33:05 +00:00
|
|
|
"strict": true,
|
2025-01-05 15:27:24 +00:00
|
|
|
"lib": ["DOM", "ESNext"],
|
|
|
|
|
"allowSyntheticDefaultImports": true
|
2024-10-25 21:21:01 +00:00
|
|
|
},
|
2024-10-27 18:33:05 +00:00
|
|
|
"include": ["src/**/*"],
|
|
|
|
|
"exclude": ["node_modules", "public"]
|
2024-10-25 18:58:08 +00:00
|
|
|
}
|