removed tsconfig checks from sidebar files

This commit is contained in:
jordan-violet-sp
2022-09-17 18:11:09 -04:00
parent a58e38e220
commit bc8c171c4c
2 changed files with 75 additions and 104 deletions

View File

@@ -1,17 +1,3 @@
/**
* Creating a sidebar enables you to:
- create an ordered group of docs
- render a sidebar for each doc of that group
- provide next/previous navigation
The sidebars can be generated from the filesystem, or explicitly defined here.
Create as many sidebars as you want.
*/
// @ts-check
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
const sidebars = {
openApiSidebar: [
{
@@ -21,19 +7,19 @@ const sidebars = {
items: [
{
type: "doc",
id: "api/getting-started"
id: "api/getting-started",
},
{
type: "doc",
id: "api/authentication"
id: "api/authentication",
},
{
type: "doc",
id: "api/standard-collection-parameters"
id: "api/standard-collection-parameters",
},
{
type: "doc",
id: "api/rate-limit"
id: "api/rate-limit",
},
{
type: "category",
@@ -61,7 +47,7 @@ const sidebars = {
// @ts-ignore
items: require("./api/beta/sidebar.js"),
},
]
],
},
],
idnDocs: [
@@ -72,4 +58,3 @@ const sidebars = {
],
};
module.exports = sidebars;

View File

@@ -1,17 +1,3 @@
/**
* Creating a sidebar enables you to:
- create an ordered group of docs
- render a sidebar for each doc of that group
- provide next/previous navigation
The sidebars can be generated from the filesystem, or explicitly defined here.
Create as many sidebars as you want.
*/
// @ts-check
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
const sidebars = {
iiqOpenApiSidebar: [
{
@@ -20,14 +6,14 @@ const sidebars = {
link: {
type: "generated-index",
title: "IdentityIQ API",
description: "These are the SCIM APIs for SailPoint's on-premise service, IdentityIQ. We encourage you to join the SailPoint Developer Community forum at https://developer.sailpoint.com/discuss to connect with other developers using our APIs.",
slug: "/api"
description:
"These are the SCIM APIs for SailPoint's on-premise service, IdentityIQ. We encourage you to join the SailPoint Developer Community forum at https://developer.sailpoint.com/discuss to connect with other developers using our APIs.",
slug: "/api",
},
// @ts-ignore
items: require("./api/sidebar.js")
}
items: require("./api/sidebar.js"),
},
],
};
module.exports = sidebars;