chore(docs-util): Improve generate references script and action (#5472)

* chore(docs-util): Improve generate references script and action

* added if condition for API reference

* fix api reference condition

* fix description of action

* fix body value

* fix step name
This commit is contained in:
Shahed Nasser
2023-10-25 17:12:10 +03:00
committed by GitHub
parent e64823d1b9
commit 2ac05066ac
15 changed files with 233 additions and 233 deletions

View File

@@ -1,7 +1,12 @@
{
"extends": "../../tsconfig",
"compilerOptions": {
"outDir": "./dist"
"outDir": "./dist",
"module": "ESNext",
"moduleResolution": "node",
},
"include": ["*.ts"],
"ts-node": {
"esm": true,
},
"include": ["*.ts"]
}