2021-07-20 14:00:26 +03:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "es5",
|
|
|
|
"lib": [
|
|
|
|
"dom",
|
|
|
|
"dom.iterable",
|
|
|
|
"esnext"
|
|
|
|
],
|
|
|
|
"allowJs": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"esModuleInterop": true,
|
2021-09-12 00:51:50 +03:00
|
|
|
"noImplicitAny": false,
|
2021-07-20 14:00:26 +03:00
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"strict": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"module": "esnext",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"resolveJsonModule": true,
|
2022-02-22 23:20:45 +03:00
|
|
|
"isolatedModules": false,
|
2021-07-20 14:00:26 +03:00
|
|
|
"noEmit": true,
|
2022-02-22 23:20:45 +03:00
|
|
|
"jsx": "react-jsx",
|
|
|
|
|
2021-07-20 14:00:26 +03:00
|
|
|
},
|
|
|
|
"include": [
|
|
|
|
"src"
|
|
|
|
]
|
|
|
|
}
|