mirror of
https://github.com/goauthentik/authentik
synced 2026-04-26 01:25:02 +02:00
35 lines
957 B
JSON
35 lines
957 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": {
|
|
"emitDeclarationOnly": true,
|
|
"checkJs": true,
|
|
"allowJs": true,
|
|
"composite": true,
|
|
"esModuleInterop": true,
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"moduleResolution": "bundler",
|
|
"allowImportingTsExtensions": true,
|
|
"jsx": "preserve",
|
|
"lib": ["DOM", "DOM.Iterable", "ESNext"],
|
|
"baseUrl": "${configDir}",
|
|
"rootDir": "${configDir}"
|
|
},
|
|
"exclude": [
|
|
// ---
|
|
"**/out",
|
|
"**/build",
|
|
"**.docusaurus",
|
|
"**.netlify",
|
|
"**.cache",
|
|
"**/reference/**/*.mdx"
|
|
]
|
|
}
|