2022-08-10 04:41:44 +03:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2024-11-19 18:47:46 +03:00
|
|
|
"lib": ["ES2022", "DOM", "DOM.Iterable"],
|
2023-09-22 06:43:25 +03:00
|
|
|
"composite": true,
|
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",
|
2023-09-22 06:43:25 +03:00
|
|
|
"moduleResolution": "Bundler",
|
2023-05-23 13:22:53 +03:00
|
|
|
"noEmit": true,
|
2023-04-28 05:21:23 +03:00
|
|
|
"allowJs": 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
|
|
|
"exactOptionalPropertyTypes": true,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"noUncheckedIndexedAccess": true,
|
|
|
|
"noImplicitOverride": true,
|
2023-02-19 03:37:58 +03:00
|
|
|
"removeComments": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"skipLibCheck": true,
|
2024-11-19 18:47:46 +03:00
|
|
|
"target": "ES2022",
|
2023-03-15 14:54:16 +03:00
|
|
|
"jsx": "react-jsx"
|
2022-08-10 04:41:44 +03:00
|
|
|
}
|
|
|
|
}
|