2025-09-17 13:33:10 -05:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"target": "ES2024",
|
2025-09-22 22:00:11 -05:00
|
|
|
"module": "NodeNext",
|
|
|
|
|
"moduleResolution": "NodeNext",
|
2025-09-17 13:33:10 -05:00
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
"strict": true,
|
2025-10-05 03:36:11 -05:00
|
|
|
"noImplicitAny": false,
|
|
|
|
|
"strictBindCallApply": false,
|
2025-09-17 13:33:10 -05:00
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"resolveJsonModule": true
|
|
|
|
|
},
|
|
|
|
|
"include": ["src"]
|
2025-10-05 03:36:11 -05:00
|
|
|
}
|