2020-03-05 12:31:32 +03:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"lib": ["es6", "dom", "es2017"],
|
2020-03-11 15:20:52 +03:00
|
|
|
"checkJs": false,
|
2020-03-05 12:31:32 +03:00
|
|
|
"allowJs": true,
|
|
|
|
"jsx": "react",
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"strict": true,
|
|
|
|
"esModuleInterop": true,
|
2020-03-11 15:20:52 +03:00
|
|
|
"noEmitOnError": false,
|
2022-08-11 16:05:15 +03:00
|
|
|
"noImplicitOverride": true,
|
2020-04-22 14:17:10 +03:00
|
|
|
"noEmit": true,
|
2021-06-10 10:19:30 +03:00
|
|
|
"types": ["react"],
|
2021-04-07 16:27:22 +03:00
|
|
|
"typeRoots": ["./src/types", "node_modules/@types"],
|
2021-07-08 11:17:34 +03:00
|
|
|
"resolveJsonModule": true,
|
2021-10-07 12:50:04 +03:00
|
|
|
"target": "es5",
|
|
|
|
"baseUrl": ".",
|
2022-08-17 17:35:48 +03:00
|
|
|
"noImplicitReturns": true,
|
2021-10-07 12:50:04 +03:00
|
|
|
"paths": {
|
|
|
|
"@/*": ["./src/*"]
|
|
|
|
}
|
2020-03-05 12:31:32 +03:00
|
|
|
},
|
2021-07-20 19:09:21 +03:00
|
|
|
"exclude": [
|
|
|
|
"node_modules",
|
|
|
|
"**/*.spec.ts",
|
|
|
|
"**/*.spec.tsx",
|
|
|
|
"**/*.test.ts",
|
|
|
|
"**/*.test.tsx",
|
|
|
|
"cypress"
|
|
|
|
],
|
2020-03-05 12:31:32 +03:00
|
|
|
"include": ["src/**/*"]
|
|
|
|
}
|