mirror of
https://github.com/status-im/safe-react.git
synced 2025-01-11 10:34:06 +00:00
9a9bb3c775
* Upgrade dependencies without breaking changes * Upgrade react-scripts to v4 * Use import instead of require in icons * Update styles dependencies * Remove react-app-rewired as is deprecated and not needed anymore * Update prettier and testing-library/react dependencies * Upgrade @ledger for desktop app * Fix types in fetchSafeTokens test * Use rescripts to remove ESLint plugin from react-scripts webpack * Disable travis cache Co-authored-by: nicolas <nicosampler@users.noreply.github.com>
38 lines
705 B
JSON
38 lines
705 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"target": "es5",
|
|
"lib": [
|
|
"dom",
|
|
"dom.iterable",
|
|
"esnext"
|
|
],
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"noImplicitAny": false,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": false,
|
|
"strictNullChecks": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"jsx": "react",
|
|
"noFallthroughCasesInSwitch": true
|
|
},
|
|
"paths": {
|
|
"src/*": [
|
|
"./*"
|
|
]
|
|
},
|
|
"include": [
|
|
"src/**/*"
|
|
],
|
|
"exclude": [
|
|
"node_modules"
|
|
]
|
|
}
|