- libary updates for prettier, eslint and typescript
- uninstall @types/xml2js (save-dev) and core-js (save) - remove HelloWorld component from app.ts and app2.ts
This commit is contained in:
parent
6295f7ea1c
commit
426228705c
25 changed files with 961 additions and 4286 deletions
|
@ -1,5 +1,5 @@
|
|||
import { AxiosRequestConfig } from "axios";
|
||||
import * as qs from "qs";
|
||||
import { stringify } from "qs";
|
||||
|
||||
export const axiosRequestConfiguration: AxiosRequestConfig = {
|
||||
// responseType: "text",
|
||||
|
@ -17,7 +17,7 @@ export const axiosRequestConfiguration: AxiosRequestConfig = {
|
|||
|
||||
paramsSerializer: {
|
||||
serialize: (params: Record<string, number>) => {
|
||||
return qs.stringify(params, { arrayFormat: "repeat" });
|
||||
return stringify(params, { arrayFormat: "repeat" });
|
||||
},
|
||||
},
|
||||
};
|
||||
|
|
Loading…
Add table
editor.link_modal.header
Reference in a new issue