2025-09-11 12:55:14 +00:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"module": "Node16",
|
|
|
|
|
"moduleResolution": "node",
|
2025-09-17 14:53:24 +00:00
|
|
|
"lib": ["ES2022", "dom"],
|
2025-09-11 12:55:14 +00:00
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
|
"downlevelIteration": true,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
"importHelpers": true,
|
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
|
"noImplicitAny": false,
|
|
|
|
|
"noImplicitReturns": false,
|
|
|
|
|
"noImplicitThis": false,
|
|
|
|
|
"noUnusedLocals": false,
|
|
|
|
|
"noUnusedParameters": false,
|
2025-09-17 14:53:24 +00:00
|
|
|
"skipLibCheck": true,
|
2025-09-11 12:55:14 +00:00
|
|
|
"sourceMap": true,
|
|
|
|
|
"strict": true,
|
2025-09-17 14:53:24 +00:00
|
|
|
"target": "ES2022"
|
2025-09-11 12:55:14 +00:00
|
|
|
}
|
2025-09-17 14:53:24 +00:00
|
|
|
}
|