mirror of
https://github.com/goauthentik/authentik.git
synced 2026-06-17 19:09:11 +03:00
264f59775c
* website/docs: Update deps. * website/docs: Port partial monorepo fixes. Fix build warnings. * website/docs: Update Prettier. * website/docs: Format. Update deps. * website/docs: Remove empty entry.
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"
|
|
]
|
|
}
|