2020-01-31 14:18:19 +03:00
|
|
|
{
|
2022-02-16 12:27:26 +03:00
|
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
2020-01-31 14:18:19 +03:00
|
|
|
"compilerOptions": {
|
|
|
|
"target": "es5",
|
2020-02-13 22:00:03 +03:00
|
|
|
"lib": [
|
|
|
|
"dom",
|
|
|
|
"dom.iterable",
|
|
|
|
"esnext"
|
|
|
|
],
|
2020-01-31 14:18:19 +03:00
|
|
|
"allowJs": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"strict": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
2022-02-16 12:27:26 +03:00
|
|
|
"noFallthroughCasesInSwitch": true,
|
2020-01-31 14:18:19 +03:00
|
|
|
"module": "esnext",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"isolatedModules": true,
|
|
|
|
"noEmit": true,
|
2022-02-16 12:27:26 +03:00
|
|
|
"jsx": "react-jsx",
|
|
|
|
"baseUrl": "."
|
2020-01-31 14:18:19 +03:00
|
|
|
},
|
2020-02-13 22:00:03 +03:00
|
|
|
"include": [
|
|
|
|
"src"
|
|
|
|
]
|
2020-01-31 14:18:19 +03:00
|
|
|
}
|