2022-08-10 04:41:44 +03:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2023-03-15 06:42:14 +03:00
|
|
|
"lib": ["DOM"],
|
2023-02-19 03:37:58 +03:00
|
|
|
"allowSyntheticDefaultImports": true,
|
2022-08-10 04:41:44 +03:00
|
|
|
"esModuleInterop": true,
|
2023-02-19 03:37:58 +03:00
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"module": "ESNext",
|
2022-08-10 04:41:44 +03:00
|
|
|
"moduleResolution": "node",
|
2023-03-15 06:42:14 +03:00
|
|
|
"checkJs": true,
|
2023-03-20 12:35:16 +03:00
|
|
|
"strict": true,
|
2023-02-19 03:37:58 +03:00
|
|
|
"noImplicitAny": true,
|
2023-03-20 12:35:16 +03:00
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
"exactOptionalPropertyTypes": true,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"noUncheckedIndexedAccess": true,
|
|
|
|
"noImplicitOverride": true,
|
2023-02-19 03:37:58 +03:00
|
|
|
"removeComments": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"skipLibCheck": true,
|
2023-03-15 06:42:14 +03:00
|
|
|
"target": "ES2019",
|
2023-03-15 14:54:16 +03:00
|
|
|
"jsx": "react-jsx"
|
2022-08-10 04:41:44 +03:00
|
|
|
}
|
|
|
|
}
|