Skip to content

Commit

Permalink
reverted tsconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
akintewe committed Oct 24, 2024
1 parent 00da565 commit 63f7282
Showing 1 changed file with 8 additions and 28 deletions.
36 changes: 8 additions & 28 deletions apps/mobile/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
{
"extends": "expo/tsconfig.base",
"compilerOptions": {
"target": "ESNext",
"lib": [
"dom",
"esnext"
],
"lib": ["dom", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
Expand All @@ -27,29 +25,11 @@
"jsx": "react-native",
"module": "ES6",
"paths": {
"afk_nostr_sdk": [
"../../packages/afk_nostr_sdk/src"
],
"common": [
"../../packages/common/src"
],
"pixel_ui": [
"../../packages/pixel_ui/src"
]
}
"afk_nostr_sdk": ["../../packages/afk_nostr_sdk/src"],
"common": ["../../packages/common/src"],
"pixel_ui": ["../../packages/pixel_ui/src"],
},
},
"exclude": [
"node_modules",
"dist",
"babel.config.js",
"metro.config.js",
"jest.config.js"
],
"include": [
"**/*.ts",
"**/*.tsx",
"**/*.js",
"**/*.jsx"
],
"extends": "expo/tsconfig.base"
"exclude": ["node_modules", "dist", "babel.config.js", "metro.config.js", "jest.config.js"],
"include": ["**/*.ts", "**/*.tsx", "**/*.js", "**/*.jsx"]
}

0 comments on commit 63f7282

Please sign in to comment.