summaryrefslogtreecommitdiff
path: root/packages/taler-wallet-webextension/tsconfig.json
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2023-02-16 03:23:42 +0100
committerFlorian Dold <florian@dold.me>2023-02-16 03:23:42 +0100
commita906263f74627dd928c581f388cf12faa3b43476 (patch)
tree1497bad4effb9298b2a08659b9b37d9fb5a3440a /packages/taler-wallet-webextension/tsconfig.json
parent08b120bc8d4a738b80c3e0d3f1703b1320f32080 (diff)
downloadwallet-core-a906263f74627dd928c581f388cf12faa3b43476.tar.gz
wallet-core-a906263f74627dd928c581f388cf12faa3b43476.tar.bz2
wallet-core-a906263f74627dd928c581f388cf12faa3b43476.zip
use node16 module resolution
Diffstat (limited to 'packages/taler-wallet-webextension/tsconfig.json')
-rw-r--r--packages/taler-wallet-webextension/tsconfig.json6
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/taler-wallet-webextension/tsconfig.json b/packages/taler-wallet-webextension/tsconfig.json
index 5fc45caae..303cf879e 100644
--- a/packages/taler-wallet-webextension/tsconfig.json
+++ b/packages/taler-wallet-webextension/tsconfig.json
@@ -8,8 +8,8 @@
"jsx": "react", /* Specify JSX code generation: 'preserve', 'react-native', or 'react'. */
"jsxFactory": "h", /* Specify the JSX factory function to use when targeting react JSX emit, e.g. React.createElement or h. */
"jsxFragmentFactory": "Fragment", // https://www.typescriptlang.org/docs/handbook/release-notes/typescript-4-0.html#custom-jsx-factories
- "moduleResolution": "Node",
- "module": "ESNext",
+ "moduleResolution": "Node16",
+ "module": "ES2020",
"target": "ES6",
"skipLibCheck": true,
"preserveSymlinks": true,
@@ -41,4 +41,4 @@
"include": [
"src/**/*"
]
-} \ No newline at end of file
+}