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,
|
|
|
|
"module": "esnext",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"isolatedModules": true,
|
|
|
|
"noEmit": true,
|
2020-02-05 00:03:21 +03:00
|
|
|
"jsx": "react",
|
2020-02-13 22:00:03 +03:00
|
|
|
"typeRoots": [
|
|
|
|
"node_modules/@types/",
|
|
|
|
"types/"
|
|
|
|
],
|
2020-09-30 18:31:48 +03:00
|
|
|
"baseUrl": ".",
|
|
|
|
"noFallthroughCasesInSwitch": true
|
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
|
|
|
}
|