Add basic Redocly config

This commit is contained in:
Roman Hotsiy
2023-10-02 23:13:27 +08:00
committed by mDuo13
parent 6852d58bc3
commit f6be0f0956
5 changed files with 231 additions and 0 deletions

15
tsconfig.json Normal file
View File

@@ -0,0 +1,15 @@
{
"compilerOptions": {
"baseUrl": ".",
"jsx": "react",
"paths": {
"@theme/*": [
"./@theme/*",
"./node_modules/@redocly/theme/src/*"
],
"@portal/*": [
"./node_modules/@redocly/portal/dist/client/App/*"
]
},
}
}