Files
notesnook/apps/mobile/tsconfig.json

23 lines
587 B
JSON
Raw Permalink Normal View History

2021-12-19 00:35:15 +05:00
{
"extends": "../../tsconfig",
2022-01-17 12:23:25 +05:00
"compilerOptions": {
2022-08-16 16:48:10 +05:00
"lib": ["es2017", "DOM", "DOM.Iterable"],
2022-01-17 12:23:25 +05:00
"allowJs": true,
"baseUrl": "./",
"jsx": "react-native",
"noEmit": true,
2022-12-20 11:14:07 +05:00
"maxNodeModuleJsDepth": 5,
"types": ["node", "jest", "detox"],
"paths": {
2023-01-12 15:39:44 +05:00
"@notesnook/*": ["../../packages"],
"@notifee/react-native": [
"./node_modules/@ammarahmed/notifee-react-native"
],
"@notesnook/theme": ["../../packages/theme"],
"@types/react": ["./node_modules/@types/react"]
2022-12-20 11:14:07 +05:00
},
"incremental": true
2022-01-17 12:23:25 +05:00
},
2022-08-16 16:48:10 +05:00
"exclude": ["native"]
2022-01-17 12:23:25 +05:00
}