Convert action to ts

- Add optional header support
- Add optional body support
This commit is contained in:
Joel Male
2020-08-26 09:36:04 +10:00
parent 749e2dcbc6
commit 00f958821e
18 changed files with 1836 additions and 46 deletions
+21
View File
@@ -0,0 +1,21 @@
{
"compilerOptions": {
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"strictPropertyInitialization": false,
"jsx": "react",
"lib": [
"dom",
"es7"
],
"module": "commonjs",
"noImplicitReturns": true,
"noImplicitAny": false,
"outDir": "./dist/",
"removeComments": true,
"sourceMap": true,
"strict": true,
"target": "es5"
},
"exclude": ["node_modules"]
}