mirror of
https://github.com/standardnotes/mobile.git
synced 2026-04-19 05:39:20 -04:00
* chore: upgrade core rn dep * chore: move rn document picker to main deps * chore: upgrade dev deps * chore: upgrade rnsodium * chore: upgrade styled-components * chore: upgrade rn doc picker * chore: upgrade react navigation * chore: upgrade sntextview and react-native-aes * chore: update static server patch file * chore: fix types * chore: upgrade snjs deps * chore: lint * chore: bump version
34 lines
782 B
JSON
34 lines
782 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"baseUrl": "src",
|
|
"esModuleInterop": true,
|
|
"isolatedModules": true,
|
|
"jsx": "react-native",
|
|
"lib": ["ESNext"],
|
|
"module": "ESNext",
|
|
"moduleResolution": "node",
|
|
"noEmit": true,
|
|
"noImplicitAny": true,
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"target": "esnext",
|
|
"typeRoots": ["node_modules/@types", "./src/types/*"],
|
|
"paths": {
|
|
"@Components/*": ["./components/*"],
|
|
"@Lib/*": ["./lib/*"],
|
|
"@Screens/*": ["./screens/*"],
|
|
"@Style/*": ["./style/*"],
|
|
"@Root/*": ["./*"]
|
|
}
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
"babel.config.js",
|
|
"metro.config.js",
|
|
"jest.config.js"
|
|
]
|
|
}
|