Skip to content

Commit

Permalink
chore: align tsconfigs
Browse files Browse the repository at this point in the history
  • Loading branch information
KiwiKilian authored and tyrauber committed Oct 21, 2024
1 parent 08b3342 commit 5cbc65c
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 23 deletions.
8 changes: 8 additions & 0 deletions packages/examples/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"strict": true,
"noEmit": true
},
"include": ["**/*.ts", "**/*.tsx"]
}
14 changes: 2 additions & 12 deletions packages/expo-app/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,7 @@
{
"extends": "expo/tsconfig.base",
"compilerOptions": {
"strict": true,
"jsx": "preserve",
"paths": {
"@/*": [
"./src/*"
],
"@maplibre/maplibre-react-native": ["../../javascript"],
}
"strict": true
},
"include": [
"**/*.ts",
"**/*.tsx"
]
"include": ["**/*.ts", "**/*.tsx"]
}
17 changes: 6 additions & 11 deletions packages/react-native-app/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,7 @@
{
"extends": "../tsconfig.json",
"compilerOptions": {
"noEmit": true,
"paths": {
"@maplibre/maplibre-react-native": ["../../javascript"],
"react": ["./node_modules/@types/react"],
"react-native": ["./node_modules/@types/react-native"]
},
},
"include": ["./src/**/*", "index.js", "e2e/firstTest.e2e.js"],
}
"extends": "../../tsconfig.json",
"compilerOptions": {
"strict": true
},
"include": ["**/*.ts", "**/*.tsx"]
}

0 comments on commit 5cbc65c

Please sign in to comment.