-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: add types and update config ts
- Loading branch information
Berrie Nachtweh
committed
Oct 12, 2020
1 parent
66d5f2d
commit 1934e7a
Showing
7 changed files
with
40 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
import { formDataToJSON } from './utils/formData'; | ||
export { formDataToJSON }; | ||
//# sourceMappingURL=index.d.ts.map |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
export declare function formDataToJSON(formData: FormData): object; | ||
//# sourceMappingURL=formData.d.ts.map |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,30 @@ | ||
{ | ||
"compilerOptions": { | ||
"baseUrl": ".", | ||
"downlevelIteration": true, | ||
"target": "es5", | ||
"lib": [ | ||
"es2019", | ||
"dom", | ||
"dom.iterable" | ||
], | ||
} | ||
"allowSyntheticDefaultImports": true, | ||
"allowUnreachableCode": false, | ||
"declaration": true, | ||
"declarationMap": true, | ||
"declarationDir": "dist/types", | ||
"downlevelIteration": true, | ||
"lib": [ | ||
"dom", | ||
"es2017", | ||
"dom.iterable" | ||
], | ||
"module": "es2015", | ||
"moduleResolution": "node", | ||
"noImplicitAny": true, | ||
"outDir": "dist", | ||
"pretty": true, | ||
"removeComments": true, | ||
"rootDir": "src", | ||
"strict": true, | ||
"target": "ES5", | ||
}, | ||
"include": [ | ||
"src/**/*.ts" | ||
], | ||
"exclude": [ | ||
"node_modules" | ||
] | ||
} |