mirror of
https://github.com/goauthentik/authentik
synced 2026-04-25 17:15:26 +02:00
* docusaurus-theme: Fix header alignment, overscroll, vertical padding. * docusaurus-theme: Lint. * website/docs: Prepare for monorepo packages. * website/docs: Clean up dependencies. Tidy table. * website/docs: Fix issue where Prettier affects example content. * website/docs: Temp fix for stale packages.
33 lines
835 B
JSON
33 lines
835 B
JSON
// @file TSConfig used by the docs package during development.
|
|
//
|
|
// @remarks
|
|
// While this configuration will influence the IDE experience,
|
|
// Docusaurus will instead use an internal configuration to build the site.
|
|
//
|
|
// @see https://docusaurus.io/docs/typescript-support
|
|
{
|
|
"extends": "@goauthentik/tsconfig",
|
|
"compilerOptions": {
|
|
"noEmit": true,
|
|
"checkJs": true,
|
|
"allowJs": true,
|
|
"composite": false,
|
|
"esModuleInterop": true,
|
|
"moduleResolution": "bundler",
|
|
"module": "esnext",
|
|
"jsx": "preserve",
|
|
"lib": ["DOM", "DOM.Iterable", "ESNext"],
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@site/*": ["./*"]
|
|
}
|
|
},
|
|
"exclude": [
|
|
// ---
|
|
"./out/**/*",
|
|
"./dist/**/*",
|
|
".docusaurus",
|
|
"build"
|
|
]
|
|
}
|