mirror of
https://github.com/goauthentik/authentik
synced 2026-04-25 17:15:26 +02:00
* Bump related TS packages. * Fix type. * Fix styles. * web: bump typescript from 5.9.3 to 6.0.2 in /web Bumps [typescript](https://github.com/microsoft/TypeScript) from 5.9.3 to 6.0.2. - [Release notes](https://github.com/microsoft/TypeScript/releases) - [Commits](https://github.com/microsoft/TypeScript/compare/v5.9.3...v6.0.2) --- updated-dependencies: - dependency-name: typescript dependency-version: 6.0.2 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * Partial upgrade. * Add dep. * Re-add preinstall. --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: Teffen Ellis <592134+GirlBossRush@users.noreply.github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
34 lines
916 B
JSON
34 lines
916 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,
|
|
"types": ["node"],
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"moduleResolution": "bundler",
|
|
"allowImportingTsExtensions": true,
|
|
"jsx": "preserve",
|
|
"lib": ["DOM", "DOM.Iterable", "ESNext"],
|
|
"rootDir": "${configDir}"
|
|
},
|
|
"exclude": [
|
|
// ---
|
|
"**/out",
|
|
"**/build",
|
|
"**.docusaurus",
|
|
"**.netlify",
|
|
"**.cache",
|
|
"**/reference/**/*.mdx"
|
|
]
|
|
}
|