mirror of
https://github.com/goauthentik/authentik.git
synced 2026-06-17 19:09:11 +03:00
1db6c3af8b
* Fix API reference paths. * Clean up vendored code. * Flesh out test. * Fix edgecase. * Clean up return value. * Fix linter.
36 lines
977 B
JSON
36 lines
977 B
JSON
// @file TSConfig used by the web package during development.
|
|
{
|
|
"extends": "@goauthentik/tsconfig",
|
|
"compilerOptions": {
|
|
"types": ["node"],
|
|
"checkJs": true,
|
|
"allowJs": true,
|
|
"composite": true,
|
|
"resolveJsonModule": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"emitDeclarationOnly": true,
|
|
"target": "esnext",
|
|
"module": "preserve",
|
|
"moduleResolution": "bundler",
|
|
"lib": ["DOM", "DOM.Iterable", "ESNext"],
|
|
|
|
"noUncheckedIndexedAccess": true
|
|
},
|
|
"include": ["./**/*", "../**/*"],
|
|
"exclude": [
|
|
// ---
|
|
"**/out/**/*",
|
|
"**/dist/**/*",
|
|
"storybook-static",
|
|
// TODO: @lit/localize-tools v0.8.0 has a nullish coalescing typing error.
|
|
// Remove when we upgrade past that.
|
|
"scripts/pseudolocalize.mjs",
|
|
"scripts/build-locales.mjs"
|
|
],
|
|
"references": [
|
|
{
|
|
"path": "../.."
|
|
}
|
|
]
|
|
}
|