This commit is contained in:
William Cheng
2023-07-28 09:30:21 +08:00
parent d96a5f5685
commit 323fc81ff0
2 changed files with 3 additions and 2 deletions

View File

@@ -1,7 +1,7 @@
import * as petstore from "ts-petstore-client";
import { expect} from "chai";
import * as FormData from "form-data";
import FormData from "form-data";
let libs: { [key: string]: petstore.HttpLibrary } = {
"isomorphic-fetch": new petstore.IsomorphicFetchHttpLibrary()
@@ -68,4 +68,4 @@ for (let libName in libs) {
}).catch(done)
})
})
}
}

View File

@@ -1,5 +1,6 @@
{
"compilerOptions": {
"esModuleInterop": true,
"module": "commonjs",
"target": "es6",
"noImplicitAny": true,