Skip to content

Commit

Permalink
chore(mobile): update target and module TS config
Browse files Browse the repository at this point in the history
  • Loading branch information
weronikaolejniczak committed May 22, 2024
1 parent c1ef834 commit a3aede0
Showing 1 changed file with 20 additions and 3 deletions.
23 changes: 20 additions & 3 deletions apps/mobile/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,27 @@
{
"extends": "../../tsconfig.json",
"$schema": "https://json.schemastore.org/tsconfig",
"extends": ["../../tsconfig.json"],
"compilerOptions": {
"jsx": "react-native",
"baseUrl": ".",
"target": "ES6",
"module": "ESNext",
"target": "esnext",
"module": "commonjs",
"lib": [
"es2019",
"es2020.bigint",
"es2020.date",
"es2020.number",
"es2020.promise",
"es2020.string",
"es2020.symbol.wellknown",
"es2021.promise",
"es2021.string",
"es2021.weakref",
"es2022.array",
"es2022.object",
"es2022.string"
],
"isolatedModules": true,
"paths": {
"actions/*": ["./src/actions/*"],
"assets/*": ["./src/common/assets/*"],
Expand Down

0 comments on commit a3aede0

Please sign in to comment.