We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b9ad91b commit 33c1ff5Copy full SHA for 33c1ff5
docs/axios-support.md
@@ -14,5 +14,13 @@ npm install axios --save-dev
14
npm install form-data@4.x --save-dev
15
```
16
17
-In order to compile the project and resolve the imports, you will need to enable the `allowSyntheticDefaultImports`
18
-in your `tsconfig.json` file.
+In order to compile the project and resolve the imports, you will need to add the following properties
+in your `tsconfig.json` file:
19
+```json
20
+{
21
+ "compilerOptions": {
22
+ "lib": ["...", "dom"],
23
+ "allowSyntheticDefaultImports": true
24
+ }
25
+}
26
+```
0 commit comments