1
0
mirror of https://github.com/tooot-app/app synced 2024-12-22 07:34:06 +01:00
tooot/tsconfig.json
xmflsct 1ea6aff328
619 restructure local storage (#628)
* To MMKV migration working

* POC migrated font size settings

* Moved settings to mmkv

* Fix typos

* Migrated contexts slice

* Migrated app slice

* POC instance emoji update

* Migrated drafts

* Migrated simple instance properties

* All migrated!

* Re-structure files

* Tolerant of undefined settings

* Can properly logging in and out including empty state
2022-12-28 23:41:36 +01:00

23 lines
546 B
JSON

{
"compilerOptions": {
"target": "ES6",
"allowSyntheticDefaultImports": true,
"jsx": "react-native",
"lib": ["dom", "esnext"],
"moduleResolution": "node",
"noEmit": true,
"skipLibCheck": true,
"resolveJsonModule": true,
"strict": true,
"strictFunctionTypes": false,
"baseUrl": "./",
"paths": {
"@components/*": ["./src/components/*"],
"@i18n/*": ["./src/i18n/*"],
"@screens/*": ["./src/screens/*"],
"@utils/*": ["./src/utils/*"]
}
},
"exclude": ["node_modules"]
}