2020-02-26 20:00:59 +03:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "es5",
|
|
|
|
"lib": [
|
|
|
|
"dom",
|
|
|
|
"dom.iterable",
|
|
|
|
"esnext"
|
|
|
|
],
|
|
|
|
"allowJs": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"noEmit": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"module": "esnext",
|
2020-08-27 21:10:00 +03:00
|
|
|
"strict": true,
|
|
|
|
"alwaysStrict": true,
|
|
|
|
"strictNullChecks": true,
|
2020-08-27 20:05:09 +03:00
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
2020-08-27 20:24:03 +03:00
|
|
|
"noImplicitAny": true,
|
2020-08-27 20:05:09 +03:00
|
|
|
"noImplicitThis": true,
|
|
|
|
"noImplicitReturns": true,
|
2020-02-26 20:00:59 +03:00
|
|
|
"moduleResolution": "node",
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"isolatedModules": true,
|
|
|
|
"jsx": "preserve",
|
|
|
|
"downlevelIteration": true,
|
2020-05-08 20:48:05 +03:00
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"types": [
|
2020-05-08 22:57:51 +03:00
|
|
|
"react-spring",
|
|
|
|
"jest"
|
2020-05-08 20:48:05 +03:00
|
|
|
]
|
2020-02-26 20:00:59 +03:00
|
|
|
},
|
|
|
|
"exclude": [
|
2020-05-08 18:38:33 +03:00
|
|
|
"node_modules",
|
|
|
|
"cypress"
|
2020-02-26 20:00:59 +03:00
|
|
|
],
|
|
|
|
"include": [
|
2020-08-27 20:05:09 +03:00
|
|
|
"./src/**/*.ts",
|
|
|
|
"./src/**/*.tsx"
|
2020-02-26 20:00:59 +03:00
|
|
|
]
|
|
|
|
}
|