Skip to content

Commit

Permalink
corrected tsconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
akintewe committed Oct 25, 2024
1 parent c1bf76c commit 62e387c
Showing 1 changed file with 5 additions and 14 deletions.
19 changes: 5 additions & 14 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,7 @@
"compilerOptions": {
"rootDir": ".",
"target": "ESNext",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
Expand All @@ -24,14 +20,9 @@
"module": "ES2015",
"declaration": true,
"sourceMap": true,
"baseUrl": "./"
"baseUrl": "./",

},
"include": [
"./packages/**/*",
"./apps/**/*"
],
"exclude": [
"node_modules"
],
"extends": "expo/tsconfig.base"
"include": ["./packages/**/*", "./apps/**/*"],
"exclude": ["node_modules"]
}

0 comments on commit 62e387c

Please sign in to comment.