2022-11-17 12:25:23 +00:00
|
|
|
{
|
2023-08-07 15:57:44 +00:00
|
|
|
"extends": "./tsconfig.extend.json",
|
|
|
|
"compilerOptions": {
|
2024-03-18 14:02:28 +00:00
|
|
|
"target": "ESNext",
|
2023-08-07 15:57:44 +00:00
|
|
|
"lib": ["es5", "dom", "dom.iterable", "esnext"],
|
|
|
|
"types": ["node"],
|
|
|
|
"allowJs": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"strict": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"module": "esnext",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"isolatedModules": true,
|
|
|
|
"noEmit": true,
|
2025-07-17 09:10:00 +00:00
|
|
|
"jsx": "react-jsx",
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noImplicitThis": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
"exactOptionalPropertyTypes": true,
|
|
|
|
"noPropertyAccessFromIndexSignature": true
|
2023-08-07 15:57:44 +00:00
|
|
|
},
|
|
|
|
"include": ["src", "**/*.ts"]
|
|
|
|
}
|